# install.packages(c("bioacoustics", "tuneR", "seewave", "dplyr", "tidyverse", "lubridate", "tools", "ggplot2", "ggpmisc", "plotly", "stringr", "monitoR", "pbapply", "foreach", "doParallel", "R.utils"), type="binary")
library(bioacoustics)
library(tuneR)
library(seewave)
library(dplyr)
library(tidyverse)
library(lubridate)
library(tools)
library(ggplot2)
library(ggpmisc)
library(plotly)
library(stringr)
ymd_hms = function(dt) {
lubridate::ymd_hms(dt, tz="Pacific/Auckland")
}
dmy_hms = function(dt) {
lubridate::dmy_hms(dt, tz="Pacific/Auckland")
}
options(stringsAsFactors = FALSE)
files = list.files("data/2019 RFID", pattern = "*.TXT$", recursive = TRUE, full.names=TRUE)
csvs = lapply(files, function(path) {
csv = read.csv(path, header=FALSE, col.names = c("year", "month", "day", "hour","minute_sec", "id", "ext", "int", "msg"))
csv$site = strsplit(strsplit(path, "/")[[1]][4], "_")[[1]][1]
csv
})
rfid = do.call(rbind, csvs)
rfid$datetime = paste0(rfid$year, "-", rfid$month, "-", rfid$day, " ", rfid$hour, ":", rfid$minute_sec)
rfid$datetime = ymd_hms(rfid$datetime)
ggplot(rfid, aes(datetime)) +
geom_freqpoly(binwidth = 60 * 60)
html_tag_audio <- function(file, type = c("wav")) {
type <- match.arg(type)
htmltools::tags$h3(
basename(file),
htmltools::tags$audio(
controls = "",
htmltools::tags$source(
src = file,
type = glue::glue("audio/{type}", type = type)
)
)
)
}
files = Sys.glob("./clips/PB*.wav")
PB_wavs = lapply(files, function(f) {
wav = read_audio(f)
wav_length = round(length(wav) / wav@samp.rate, 2)
spectro(wav, main=paste0(basename(f), " ", wav_length, "s"), osc=TRUE)
print(html_tag_audio(f))
data.frame(filename=basename(f), wav_length)
})
PB_wavs = do.call(rbind, PB_wavs)
read_BAR_metadata = function(files) {
library(pbapply)
df = pblapply(files, function(f) {
bits = strsplit(basename(f), "_")[[1]]
start = ymd_hms(paste(bits[2], bits[3]))
site = strsplit(f, "/")[[1]][4]
try({
wav_header = readWave(f, header=TRUE)
duration = wav_header$samples / wav_header$sample.rate
end = start + duration
return(data.frame(filename = f, base_filename = basename(f), site = site, start = start, end = end, samples = wav_header$samples, sr = wav_header$sample.rate, duration=duration, interval = interval(start, end)))
})
NULL
})
df = do.call(rbind, df)
df
}
if (file.exists("misc/BAR_timespans.csv")) {
df = read.csv("misc/BAR_timespans.csv")
df$start = ymd_hms(df$start)
df$end = ymd_hms(df$end)
df$interval = interval(df$start, df$end)
} else {
files = list.files("data/2019 BAR recordings", pattern = "*.wav$", recursive = TRUE, full.names=TRUE)
df = read_BAR_metadata(files)
write.csv(df, "misc/BAR_timespans.csv", row.names = FALSE)
}
df[c("site", "interval")]
PB_to_check = "PB0023.wav"
site_to_check = "NNK30"
filtered_rfid = filter(rfid, msg == PB_to_check & site == site_to_check)
filtered_df = filter(df, site == site_to_check)
filtered_rfid$corrected_datetime = filtered_rfid$datetime
filtered_rfid$match = lapply(1:nrow(filtered_rfid), function(i) {
dt = filtered_rfid$corrected_datetime[i]
site = filtered_rfid$site[i]
indices = which(dt %within% filtered_df$interval)
if (length(indices) == 0) indices = NA
indices
})
print(paste("There are", nrow(filtered_rfid), PB_to_check, "playbacks, of which", sum(!is.na(filtered_rfid$match)), "have recordings"))
[1] "There are 307 PB0023.wav playbacks, of which 48 have recordings"
# A few randomly
datetimes_to_check = sort(sample(filtered_rfid$corrected_datetime[!is.na(filtered_rfid$match)], 5))
# Ones from the 13th
#datetimes_to_check = filtered_rfid$corrected_datetime[!is.na(filtered_rfid$match) & filtered_rfid$datetime > ymd_hms("2019-11-20 00:00:00") & filtered_rfid$datetime < ymd_hms("2019-11-20 23:59:59")]
#datetimes_to_check = filtered_rfid$corrected_datetime[!is.na(filtered_rfid$match) & filtered_rfid$corrected_datetime %within% interval(ymd_hms("2019-12-13 16:45:00"), ymd_hms("2019-12-13 17:13:00"))]
print(datetimes_to_check)
[1] "2019-12-13 15:37:01 NZDT" "2019-12-13 17:31:15 NZDT" "2019-12-13 17:57:57 NZDT" "2019-12-14 08:12:44 NZDT"
[5] "2019-12-14 08:25:41 NZDT"
#dt = ymd_hms("2019-12-13 16:45:04")
setWavPlayer("play") # OS dependent
checked_clips = lapply(datetimes_to_check, function(dt) {
match = filtered_rfid$match[filtered_rfid$corrected_datetime == dt][[1]]
f = filtered_df$filename[match]
clip_start = time_length(dt - filtered_df$start[match], unit = "seconds")
clip_end = clip_start + 1
print(paste(f, dt, clip_start, clip_end))
wav = read_audio(f, from = clip_start, to = clip_end)
spectro(wav, main=dt, osc=TRUE)
play(wav)
wav
})
[1] "data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_144041_SunriseToSunset [-39.1072 176.8183].wav 2019-12-13 15:37:01 3380 3381"
play WARN alsa: can't encode 0-bit Unknown or not applicable
/tmp/RtmpAjDPHN/tuneRtemp.wav:
File Size: 88.3k Bit Rate: 706k
Encoding: Signed PCM
Channels: 1 @ 16-bit
Samplerate: 44100Hz
Replaygain: off
Duration: 00:00:01.00
In:0.00% 00:00:00.00 [00:00:01.00] Out:0 [ | ] Clip:0
In:92.9% 00:00:00.93 [00:00:00.07] Out:41.0k [ -|- ] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:44.1k [ =|= ] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:44.1k [ | ] Clip:0
Done.
[1] "data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 2019-12-13 17:31:15 3036 3037"
play WARN alsa: can't encode 0-bit Unknown or not applicable
/tmp/RtmpAjDPHN/tuneRtemp.wav:
File Size: 88.3k Bit Rate: 706k
Encoding: Signed PCM
Channels: 1 @ 16-bit
Samplerate: 44100Hz
Replaygain: off
Duration: 00:00:01.00
In:0.00% 00:00:00.00 [00:00:01.00] Out:0 [ | ] Clip:0
In:92.9% 00:00:00.93 [00:00:00.07] Out:41.0k [ | ] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:44.1k [ | ] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:44.1k [ | ] Clip:0
Done.
[1] "data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 2019-12-13 17:57:57 4638 4639"
play WARN alsa: can't encode 0-bit Unknown or not applicable
/tmp/RtmpAjDPHN/tuneRtemp.wav:
File Size: 88.3k Bit Rate: 706k
Encoding: Signed PCM
Channels: 1 @ 16-bit
Samplerate: 44100Hz
Replaygain: off
Duration: 00:00:01.00
In:0.00% 00:00:00.00 [00:00:01.00] Out:0 [ | ] Clip:0
In:92.9% 00:00:00.93 [00:00:00.07] Out:41.0k [ | ] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:44.1k [ | ] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:44.1k [ | ] Clip:0
Done.
[1] "data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191214_STUDY [-39.1072 176.8183]/NNK30_20191214_064038_SunriseToSunset [-39.1072 176.8183].wav 2019-12-14 08:12:44 5526 5527"
play WARN alsa: can't encode 0-bit Unknown or not applicable
/tmp/RtmpAjDPHN/tuneRtemp.wav:
File Size: 88.3k Bit Rate: 706k
Encoding: Signed PCM
Channels: 1 @ 16-bit
Samplerate: 44100Hz
Replaygain: off
Duration: 00:00:01.00
In:0.00% 00:00:00.00 [00:00:01.00] Out:0 [ | ] Clip:0
In:92.9% 00:00:00.93 [00:00:00.07] Out:41.0k [ | ] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:44.1k [ | ] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:44.1k [ | ] Clip:0
Done.
[1] "data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191214_STUDY [-39.1072 176.8183]/NNK30_20191214_064038_SunriseToSunset [-39.1072 176.8183].wav 2019-12-14 08:25:41 6303 6304"
play WARN alsa: can't encode 0-bit Unknown or not applicable
/tmp/RtmpAjDPHN/tuneRtemp.wav:
File Size: 88.3k Bit Rate: 706k
Encoding: Signed PCM
Channels: 1 @ 16-bit
Samplerate: 44100Hz
Replaygain: off
Duration: 00:00:01.00
In:0.00% 00:00:00.00 [00:00:01.00] Out:0 [ | ] Clip:0
In:92.9% 00:00:00.93 [00:00:00.07] Out:41.0k [ -|- ] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:44.1k [ | ] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:44.1k [ | ] Clip:0
Done.
if (file.exists("misc/approx_offsets.csv")) {
approx_offsets = read.csv("misc/approx_offsets.csv")
} else {
filtered_rfid = rfid[str_extract(rfid$msg, "^.{2}") == "PB",]
approx_offsets = lapply(1:nrow(df), function(i) {
matched_events = filtered_rfid[filtered_rfid$site == df$site[i] & filtered_rfid$datetime %within% df$interval[i],]
if (nrow(matched_events) == 0) {
return(NULL)
}
if (nrow(matched_events) > 10) {
matched_events = sample_n(matched_events, 10)
}
offsets = time_length(matched_events$datetime - df$start[i])
data.frame(filename = df$filename[i], offset = offsets, site = matched_events$site, pb = matched_events$msg, datetime = matched_events$datetime)
})
approx_offsets = do.call(rbind, approx_offsets)
write.csv(approx_offsets, "misc/approx_offsets.csv", row.names = FALSE)
}
annotations = lapply(list.files("misc", "*.txt", full.names=TRUE), function(f) {
if (str_detect(f, "selections")) {
x = read.table(f, sep="\t", header=TRUE)
x$datetime = ymd_hms(paste(x$Begin.Date, x$Begin.Clock.Time))
x = x[c("Begin.Time..s.", "End.Time..s.", "Individual.ID", "Nest.ID", "datetime")]
} else {
x = read.table(f, col.names = c("Begin.Time..s.", "End.Time..s.", "Individual.ID"))[c(TRUE, FALSE),]
x$Begin.Time..s. = as.numeric(x$Begin.Time..s.)
x$End.Time..s. = as.numeric(x$Begin.Time..s.)
x$Nest.ID = strsplit(basename(f), "_")[[1]][1]
x$datetime = df$start[df$base_filename == str_replace(basename(f), ".txt", ".wav")] + x$Begin.Time..s.
}
x$filename = str_replace(basename(f), ".Band.Limited.Energy.Detector.selections.txt|.txt", "")
x
})
annotations = do.call(rbind, annotations)
annotations$offset = rep(NA, nrow(annotations))
annotations$Individual.ID[annotations$Individual.ID == "PB0009" | annotations$Individual.ID == "PB009"] = "PB0009zp"
annotations$Nest.ID[annotations$Nest.ID == "NKN31"] = "NNK31"
for (i in 1:nrow(annotations)) {
if (substring(annotations$Individual.ID[i], 0, 2) == "PB") {
filtered_rfid = filter(rfid, annotations$Nest.ID[i] == site & msg == paste0(annotations$Individual.ID[i], ".wav"))
matched_rec_start = df$start[df$site == annotations$Nest.ID[i] & annotations$datetime[i] %within% df$interval]
diffs = time_length(filtered_rfid$datetime - annotations$datetime[i])
min_i = which.min(abs(diffs))
offset = diffs[min_i]
if (length(offset) == 1) {
annotations$offset[i] = offset
}
}
}
filtered_annotations = filter(annotations, !is.na(offset) & offset > -60 & Nest.ID == "NNS1")
ggplot(data = filtered_annotations, aes(x=Begin.Time..s., y=offset, color=substr(basename(filename), start = 6, stop = 20))) +
geom_point() +
geom_smooth(method = "lm") +
stat_poly_eq(formula = y ~ x,
aes(label = paste(..eq.label.., ..rr.label.., sep = "~~~")),
parse = TRUE) +
labs(color='file datetime')
Something is wrong with the RFID chip clock - it’s drifting significantly. More data points will help - let’s autodetect PB in the audio files
filtered_annotations = annotations[annotations$Individual.ID == "PB0023" & annotations$Nest.ID == "NNK30",]
print(filtered_annotations[1,])
library(monitoR)
PB23 = makeCorTemplate("clips/PB0023.wav", frq.lim = c(3,10), name="PB0023")
Automatic point selection.
Done.
PB24 = makeCorTemplate("clips/PB0024.wav", frq.lim = c(3,10), name="PB0024")
Automatic point selection.
Done.
ctemps = combineCorTemplates(PB23, PB24)
wav = read_audio(filtered_annotations$Begin.Path[1], from = 300, to = 800)
Error in switch(file_format, wav = read_wav, mp3 = read_mp3, wac = read_wac, :
EXPR must be a length 1 vector
monitoR seems too unreliable for this task, unfortunately
The reason for the drift is SD card write speed. BAR logfiles indicate the true time packed, so if we read the BAR logfiles we can determine the true sampling rate, and correct it. In some cases, it’ll be just under 44.1KHz.
files = list.files("data/2019 BAR recordings", pattern = "logfile.*txt$", recursive = TRUE, full.names=TRUE)
sites = sapply(strsplit(files, "/"), "[[", 4)
df$true_length = rep(NA, nrow(df))
for (site in unique(sites)) {
files_for_site = files[site == sites]
lines = unlist(lapply(files_for_site, readLines))
rec = str_subset(lines, "Recording")
dt = dmy_hms(str_extract(rec, "^.{19}"))
rec = rec[order(dt)]
dt = sort(dt)
for (i in 1:(length(rec) - 1)) {
if (str_detect(rec[i], "started") && str_detect(rec[i + 1], "stopped")) {
filtered_df = df[df$site == site,]
diffs = time_length(filtered_df$start - dt[i])
min_i = which.min(abs(diffs))
min_i = which(df$filename == filtered_df$filename[min_i])
df$true_length[min_i] = time_length(dt[i+1] - dt[i])
}
}
}
ggplot(df[df$site != "KAKA Aviary_20191101_20191113_BAR",], aes(x=start, y=true_length - duration, color = site)) +
geom_point() +
scale_y_continuous(breaks = scales::pretty_breaks(n = 10))
The problem with that though, is that sampling rates in wave files are integers - there’s a loss of precision there. It should be possible to multiply a desired second offset by the true sampling rate and slice a wav file that way.
df$true_sr = df$samples / df$true_length
df$true_sr[!is.na(df$true_sr) & df$true_sr > 44000] = 44100
write.csv(df, "misc/BAR_timespans.csv", row.names = FALSE)
ggplot(df[df$duration > 100,], aes(x=true_sr)) +
geom_histogram(binwidth=5)
approx_offsets$corrected_offset = sapply(1:nrow(approx_offsets), function(i) {
approx_offsets$offset[i] * 44100 / df$true_sr[approx_offsets$filename[i] == df$filename]
})
write.csv(approx_offsets, "misc/approx_offsets.csv", row.names = FALSE)
filtered_offsets = approx_offsets[approx_offsets$site == "NNS1" & approx_offsets$filename %in% df$filename[!is.na(df$true_sr)],]
for (i in sample(1:nrow(filtered_offsets), 10)) {
f = filtered_offsets$filename[i]
true_sr_for_f = df$true_sr[df$filename == f]
clip_start = round(filtered_offsets$offset[i] * true_sr_for_f)
clip_end = round(clip_start + true_sr_for_f)
print(paste(f, true_sr_for_f, clip_start, clip_end))
wav = readWave(filename = f, from = clip_start, to = clip_end, units="samples")
wav@samp.rate = true_sr_for_f
spectro(wav, main=basename(f), osc=TRUE)
play(wav)
}
[1] "data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_044100_SunriseToSunset [-39.1041 176.8027].wav 44100 261248400 261292500"
play WARN alsa: can't encode 0-bit Unknown or not applicable
/tmp/RtmpAjDPHN/tuneRtemp.wav:
File Size: 88.3k Bit Rate: 706k
Encoding: Signed PCM
Channels: 1 @ 16-bit
Samplerate: 44100Hz
Replaygain: off
Duration: 00:00:01.00
In:0.00% 00:00:00.00 [00:00:01.00] Out:0 [ | ] Clip:0
In:92.9% 00:00:00.93 [00:00:00.07] Out:41.0k [ -=|=- ] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:44.1k [ -|- ] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:44.1k [ | ] Clip:0
Done.
[1] "data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 29061900 29106000"
play WARN alsa: can't encode 0-bit Unknown or not applicable
/tmp/RtmpAjDPHN/tuneRtemp.wav:
File Size: 88.3k Bit Rate: 706k
Encoding: Signed PCM
Channels: 1 @ 16-bit
Samplerate: 44100Hz
Replaygain: off
Duration: 00:00:01.00
In:0.00% 00:00:00.00 [00:00:01.00] Out:0 [ | ] Clip:0
In:92.9% 00:00:00.93 [00:00:00.07] Out:41.0k [ =====|===== ] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:44.1k [ =|= ] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:44.1k [ | ] Clip:0
Done.
[1] "data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191130_STUDY [-39.1041 176.8027]/NNS1_20191130_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 167932800 167976900"
play WARN alsa: can't encode 0-bit Unknown or not applicable
/tmp/RtmpAjDPHN/tuneRtemp.wav:
File Size: 88.3k Bit Rate: 706k
Encoding: Signed PCM
Channels: 1 @ 16-bit
Samplerate: 44100Hz
Replaygain: off
Duration: 00:00:01.00
In:0.00% 00:00:00.00 [00:00:01.00] Out:0 [ | ] Clip:0
In:92.9% 00:00:00.93 [00:00:00.07] Out:41.0k [ -====|====- ] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:44.1k [-=====|=====-] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:44.1k [ | ] Hd:3.6 Clip:0
Done.
[1] "data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_144039_SunriseToSunset [-39.0986 176.8061].wav 43836.3659858274 271566287 271610123"
play WARN alsa: can't encode 0-bit Unknown or not applicable
/tmp/RtmpAjDPHN/tuneRtemp.wav:
File Size: 87.8k Bit Rate: 702k
Encoding: Signed PCM
Channels: 1 @ 16-bit
Samplerate: 43836Hz
Replaygain: off
Duration: 00:00:01.00
In:0.00% 00:00:00.00 [00:00:01.00] Out:0 [ | ] Clip:0
In:93.4% 00:00:00.93 [00:00:00.07] Out:41.0k [ -====|====- ] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:43.8k [ -|- ] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:43.8k [ | ] Clip:0
Done.
[1] "data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_124038_SunriseToSunset [-39.0986 176.8061].wav 43836.3659858274 303873689 303917525"
play WARN alsa: can't encode 0-bit Unknown or not applicable
/tmp/RtmpAjDPHN/tuneRtemp.wav:
File Size: 87.8k Bit Rate: 702k
Encoding: Signed PCM
Channels: 1 @ 16-bit
Samplerate: 43836Hz
Replaygain: off
Duration: 00:00:01.00
In:0.00% 00:00:00.00 [00:00:01.00] Out:0 [ | ] Clip:0
In:93.4% 00:00:00.93 [00:00:00.07] Out:41.0k [ | ] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:43.8k [ | ] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:43.8k [ | ] Clip:0
Done.
[1] "data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_084040_SunriseToSunset [-39.0986 176.8061].wav 43830.219844358 136005172 136049002"
play WARN alsa: can't encode 0-bit Unknown or not applicable
/tmp/RtmpAjDPHN/tuneRtemp.wav:
File Size: 87.7k Bit Rate: 702k
Encoding: Signed PCM
Channels: 1 @ 16-bit
Samplerate: 43830Hz
Replaygain: off
Duration: 00:00:01.00
In:0.00% 00:00:00.00 [00:00:01.00] Out:0 [ | ] Clip:0
In:93.4% 00:00:00.93 [00:00:00.07] Out:41.0k [!=====|=====!] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:43.8k [ ====|==== ] Hd:0.4 Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:43.8k [ | ] Hd:0.4 Clip:0
Done.
[1] "data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_104040_SunriseToSunset [-39.0986 176.8061].wav 43824.1297762957 138966316 139010140"
play WARN alsa: can't encode 0-bit Unknown or not applicable
/tmp/RtmpAjDPHN/tuneRtemp.wav:
File Size: 87.7k Bit Rate: 702k
Encoding: Signed PCM
Channels: 1 @ 16-bit
Samplerate: 43824Hz
Replaygain: off
Duration: 00:00:01.00
In:0.00% 00:00:00.00 [00:00:01.00] Out:0 [ | ] Clip:0
In:93.5% 00:00:00.93 [00:00:00.07] Out:41.0k [ -===|===- ] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:43.8k [ ==|== ] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:43.8k [ | ] Clip:0
Done.
[1] "data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_124040_SunriseToSunset [-39.0986 176.8061].wav 43830.3901625677 2147689 2191519"
play WARN alsa: can't encode 0-bit Unknown or not applicable
/tmp/RtmpAjDPHN/tuneRtemp.wav:
File Size: 87.7k Bit Rate: 702k
Encoding: Signed PCM
Channels: 1 @ 16-bit
Samplerate: 43830Hz
Replaygain: off
Duration: 00:00:01.00
In:0.00% 00:00:00.00 [00:00:01.00] Out:0 [ | ] Clip:0
In:93.4% 00:00:00.93 [00:00:00.07] Out:41.0k [!=====|=====!] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:43.8k [ =|= ] Hd:0.0 Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:43.8k [ | ] Hd:0.0 Clip:0
Done.
[1] "data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_044100_SunriseToSunset [-39.1041 176.8027].wav 44100 226806300 226850400"
play WARN alsa: can't encode 0-bit Unknown or not applicable
/tmp/RtmpAjDPHN/tuneRtemp.wav:
File Size: 88.3k Bit Rate: 706k
Encoding: Signed PCM
Channels: 1 @ 16-bit
Samplerate: 44100Hz
Replaygain: off
Duration: 00:00:01.00
In:0.00% 00:00:00.00 [00:00:01.00] Out:0 [ | ] Clip:0
In:92.9% 00:00:00.93 [00:00:00.07] Out:41.0k [ -==|==- ] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:44.1k [ ==|== ] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:44.1k [ | ] Clip:0
Done.
[1] "data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191130_STUDY [-39.1041 176.8027]/NNS1_20191130_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 131638500 131682600"
play WARN alsa: can't encode 0-bit Unknown or not applicable
/tmp/RtmpAjDPHN/tuneRtemp.wav:
File Size: 88.3k Bit Rate: 706k
Encoding: Signed PCM
Channels: 1 @ 16-bit
Samplerate: 44100Hz
Replaygain: off
Duration: 00:00:01.00
In:0.00% 00:00:00.00 [00:00:01.00] Out:0 [ | ] Clip:0
In:92.9% 00:00:00.93 [00:00:00.07] Out:41.0k [ | ] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:44.1k [ | ] Clip:0
In:100% 00:00:01.00 [00:00:00.00] Out:44.1k [ | ] Clip:0
Done.
annotations$corrected_begin = sapply(1:nrow(annotations), function(i) {
true_sr = df$true_sr[str_detect(df$base_filename, fixed(annotations$filename[i]))]
annotations$Begin.Time..s.[i] * 44100 / true_sr
})
annotations$offset = NA
for (i in 1:nrow(annotations)) {
if (substring(annotations$Individual.ID[i], 0, 2) == "PB") {
filtered_rfid = filter(rfid, annotations$Nest.ID[i] == site & msg == paste0(annotations$Individual.ID[i], ".wav"))
matched_rec_start = df$start[str_detect(df$base_filename, fixed(annotations$filename[i]))]
rfid_offset = time_length(filtered_rfid$datetime - matched_rec_start)
diffs = time_length(annotations$corrected_begin[i] - rfid_offset)
min_i = which.min(abs(diffs))
offset = diffs[min_i]
if (length(offset) == 1) {
annotations$offset[i] = offset
}
}
}
filtered_annotations = filter(annotations, Nest.ID == "NNS1" & abs(offset) < 60)
ggplot(data = filtered_annotations, aes(x=corrected_begin, y=offset, color=substr(basename(filename), start = 6, stop = 20))) +
geom_point() +
geom_smooth(method = "lm") +
scale_y_continuous(breaks = scales::pretty_breaks(n = 10)) +
labs(color='file datetime') +
stat_poly_eq(formula = y ~ x,
aes(label = paste(..eq.label.., ..rr.label.., sep = "~~~")),
parse = TRUE) +
ggtitle("Drift per file at NNS1")
ggplot(data = filtered_annotations, aes(x=datetime, y=offset)) +
geom_point() +
geom_smooth(method = "lm") +
scale_y_continuous(breaks = scales::pretty_breaks(n = 10)) +
labs(color='file datetime') +
stat_poly_eq(formula = y ~ x,
aes(label = paste(..eq.label.., ..rr.label.., sep = "~~~")),
parse = TRUE) +
ggtitle("Drift per day at NNS1")
ggplot(data = annotations, aes(x=corrected_begin, y=offset, color=Nest.ID)) +
geom_point() +
geom_smooth(method = "lm") +
scale_y_continuous(breaks = scales::pretty_breaks(n = 10))
f = "NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061]"
offset = median(annotations$offset[annotations$filename == f], na.rm=TRUE) # offset for this file
matched_df = df[str_detect(df$base_filename, fixed(f)),]
matched_event_offsets = time_length(rfid$datetime[rfid$msg == "PB0023.wav" & rfid$datetime %within% matched_df$interval & rfid$site == matched_df$site] - matched_df$start)
for (begin_time in matched_event_offsets) {
sr = matched_df$true_sr
clip_start = round((begin_time + offset) * sr)
clip_end = round(clip_start + (sr * 2))
wav = readWave(matched_df$filename, from = clip_start, to = clip_end, units = "samples")
print(paste(matched_df$filename, matched_df$true_sr, clip_start, clip_end))
wav = readWave(filename = matched_df$filename, from = clip_start, to = clip_end, units="samples")
wav@samp.rate = true_sr_for_f
spectro(wav, main=begin_time, osc=TRUE)
#play(wav)
}
[1] "data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 18526744 18614393"
[1] "data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 35749694 35837343"
[1] "data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 53191766 53279415"
[1] "data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 71072080 71159729"
[1] "data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 89127692 89215341"
[1] "data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 106525940 106613589"
[1] "data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 144959852 145047501"
[1] "data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 162577221 162664870"
[1] "data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 179712522 179800171"
[1] "data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 197373716 197461365"
[1] "data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 215516976 215604625"
[1] "data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 232564629 232652278"
[1] "data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 270779420 270867069"
[1] "data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 288090018 288177667"
[1] "data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 305137672 305225321"
Not bad.
unique_rfids = unique(rfid$msg[str_extract(rfid$msg, "^.{2}") == "RF"])
#human_readable_rfids = paste0("bird", 1:length(unique_rfids))
human_readable_rfids = c("alpha", "bravo", "charlie", "delta", "echo", "foxtrot", "golf", "hotel", "india", "juliet", "kilo", "lima", "mike", "november")
human_readable_rfids = setNames(human_readable_rfids, unique_rfids)
unique_rfids = setNames(unique_rfids, human_readable_rfids)
processed_rfid = rfid
mask = str_extract(processed_rfid$msg, "^.{2}") == "RF"
processed_rfid$msg[mask] = human_readable_rfids[processed_rfid$msg[mask]]
ggplot(processed_rfid[mask,], aes(x = datetime, color = msg)) +
geom_freqpoly(binwidth = 60 * 60 * 24) +
ggtitle("RFID detections per day")
if (file.exists("misc/processed_rfid.csv")) {
processed_rfid2 = read.csv("misc/processed_rfid.csv")
processed_rfid2$datetime = ymd_hms(processed_rfid2$datetime)
} else {
time_threshold = 2
LG_threshold = 1
library(pbapply)
processed_rfid2 = pblapply(1:sum(mask), function(i) {
dt = processed_rfid$datetime[mask][i]
this_site = processed_rfid$site[mask][i]
bird = processed_rfid$msg[mask][i]
LG = filter(processed_rfid, site == this_site & abs(datetime - dt) < time_threshold & msg == "Light Gate Change")
if (nrow(LG) > 2) {
event_type = NULL
ext_g = mean(diff(LG$ext))
int_g = mean(diff(LG$int))
if (ext_g < 0 & int_g > 0) {
event_type = "entry"
} else if (int_g < 0 & ext_g > 0) {
event_type = "exit"
}
if (length(event_type) == 1) {
print(paste(i, bird, event_type, this_site, dt))
return(data.frame(i = i, bird = bird, event_type = event_type, ext_g = ext_g, int_g = int_g, site = this_site, datetime = dt))
}
}
})
processed_rfid2 = do.call(rbind, processed_rfid)
write.csv(processed_rfid2, "misc/processed_rfid.csv", row.names=FALSE)
}
ggplot(processed_rfid2, aes(x = datetime, y = bird, color = event_type)) + geom_point()
ggplot(filter(processed_rfid2, datetime > ymd("2019-12-28") & datetime < ymd("2019-12-29")), aes(x = datetime, y = bird, color = event_type)) + geom_point()
Seems a bit too unreliable - the light gates might be too sensitive. Looks like we’ll have to just slice around RFID passes.
df$offset = sapply(df$base_filename, function(f) {
median(annotations$offset[paste0(annotations$filename, ".wav") == f], na.rm = TRUE)
})
for (i in 1:nrow(dts_to_slice_deduplicated)) {
start = dts_to_slice_deduplicated$start[i]
duration = dts_to_slice_deduplicated$duration[i]
bird = dts_to_slice_deduplicated$bird[i]
site = dts_to_slice_deduplicated$site[i]
matched_df = df[df$site == site & start %within% df$interval & !is.na(df$offset) & !is.na(df$true_sr),]
if (nrow(matched_df) == 1) {
sr = matched_df$true_sr
clip_start_s = time_length(start - matched_df$start) + matched_df$offset
clip_start_samples = round(clip_start_s * sr)
clip_end_samples = round(clip_start_samples + (sr * duration))
print(paste(i, bird, site, start, duration, matched_df$filename, matched_df$true_sr, clip_start_samples, clip_end_samples))
wav = readWave(filename = matched_df$filename, from = clip_start_samples, to = clip_end_samples, units="samples")
wav@samp.rate = sr
if (sr != 44100) {
wav = resamp(wav, g = 44100, output = "Wave")
}
formatted_date = format(start, "%Y-%m-%d_%H%M%S_NZDT")
output_filename = paste0("data/2019 BAR recordings - individual bird clips/", bird, "/", site, "_", formatted_date, ".wav")
mkdirs(dirname(output_filename))
writeWave(wav, filename = output_filename)
}
}
[1] "12 alpha NNBB11 2019-11-17 16:53:18 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB11/NNBB11_20191117_STUDY [-39.1172 176.8147]/NNBB11_20191117_164838_SunriseToSunset [-39.1172 176.8147].wav 43824.3009169214 12529170 12967413"
channels' data will be rounded to integers for writing the wave file
[1] "13 alpha NNBB11 2019-11-17 16:57:25 14 data/2019 BAR recordings/NNBB Bellbird nests/NNBB11/NNBB11_20191117_STUDY [-39.1172 176.8147]/NNBB11_20191117_164838_SunriseToSunset [-39.1172 176.8147].wav 43824.3009169214 23353773 23967313"
channels' data will be rounded to integers for writing the wave file
[1] "14 alpha NNBB11 2019-11-17 17:01:13 18 data/2019 BAR recordings/NNBB Bellbird nests/NNBB11/NNBB11_20191117_STUDY [-39.1172 176.8147]/NNBB11_20191117_164838_SunriseToSunset [-39.1172 176.8147].wav 43824.3009169214 33345713 34134550"
channels' data will be rounded to integers for writing the wave file
[1] "15 alpha NNBB11 2019-11-17 17:16:05 16 data/2019 BAR recordings/NNBB Bellbird nests/NNBB11/NNBB11_20191117_STUDY [-39.1172 176.8147]/NNBB11_20191117_164838_SunriseToSunset [-39.1172 176.8147].wav 43824.3009169214 72436990 73138179"
channels' data will be rounded to integers for writing the wave file
[1] "16 alpha NNBB11 2019-11-17 17:37:19 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB11/NNBB11_20191117_STUDY [-39.1172 176.8147]/NNBB11_20191117_164838_SunriseToSunset [-39.1172 176.8147].wav 43824.3009169214 128269149 128707392"
channels' data will be rounded to integers for writing the wave file
[1] "17 alpha NNBB11 2019-11-17 17:37:54 15 data/2019 BAR recordings/NNBB Bellbird nests/NNBB11/NNBB11_20191117_STUDY [-39.1172 176.8147]/NNBB11_20191117_164838_SunriseToSunset [-39.1172 176.8147].wav 43824.3009169214 129803000 130460365"
channels' data will be rounded to integers for writing the wave file
[1] "18 alpha NNBB11 2019-11-17 17:51:36 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB11/NNBB11_20191117_STUDY [-39.1172 176.8147]/NNBB11_20191117_164838_SunriseToSunset [-39.1172 176.8147].wav 43824.3009169214 165826575 166264818"
channels' data will be rounded to integers for writing the wave file
[1] "19 alpha NNBB11 2019-11-17 18:20:35 12 data/2019 BAR recordings/NNBB Bellbird nests/NNBB11/NNBB11_20191117_STUDY [-39.1172 176.8147]/NNBB11_20191117_164838_SunriseToSunset [-39.1172 176.8147].wav 43824.3009169214 242037034 242562926"
channels' data will be rounded to integers for writing the wave file
[1] "20 alpha NNBB11 2019-11-17 18:22:39 12 data/2019 BAR recordings/NNBB Bellbird nests/NNBB11/NNBB11_20191117_STUDY [-39.1172 176.8147]/NNBB11_20191117_164838_SunriseToSunset [-39.1172 176.8147].wav 43824.3009169214 247471248 247997140"
channels' data will be rounded to integers for writing the wave file
[1] "21 alpha NNBB11 2019-11-17 18:24:20 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB11/NNBB11_20191117_STUDY [-39.1172 176.8147]/NNBB11_20191117_164838_SunriseToSunset [-39.1172 176.8147].wav 43824.3009169214 251897502 252335745"
channels' data will be rounded to integers for writing the wave file
[1] "22 alpha NNBB11 2019-11-17 18:27:14 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB11/NNBB11_20191117_STUDY [-39.1172 176.8147]/NNBB11_20191117_164838_SunriseToSunset [-39.1172 176.8147].wav 43824.3009169214 259522930 259961173"
channels' data will be rounded to integers for writing the wave file
[1] "23 alpha NNBB11 2019-11-17 18:27:49 16 data/2019 BAR recordings/NNBB Bellbird nests/NNBB11/NNBB11_20191117_STUDY [-39.1172 176.8147]/NNBB11_20191117_164838_SunriseToSunset [-39.1172 176.8147].wav 43824.3009169214 261056781 261757970"
channels' data will be rounded to integers for writing the wave file
[1] "24 alpha NNBB11 2019-11-17 18:37:43 14 data/2019 BAR recordings/NNBB Bellbird nests/NNBB11/NNBB11_20191117_STUDY [-39.1172 176.8147]/NNBB11_20191117_164838_SunriseToSunset [-39.1172 176.8147].wav 43824.3009169214 287088416 287701956"
channels' data will be rounded to integers for writing the wave file
[1] "990 bravo NNBB12 2019-12-02 09:07:29 16 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 70906148 71607827"
channels' data will be rounded to integers for writing the wave file
[1] "991 bravo NNBB12 2019-12-02 09:12:56 15 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 85246720 85904544"
channels' data will be rounded to integers for writing the wave file
[1] "992 bravo NNBB12 2019-12-02 09:13:23 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 86430804 86869354"
channels' data will be rounded to integers for writing the wave file
[1] "993 bravo NNBB12 2019-12-02 09:17:16 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 96649010 97087560"
channels' data will be rounded to integers for writing the wave file
[1] "994 bravo NNBB12 2019-12-02 09:27:15 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 122918132 123356682"
channels' data will be rounded to integers for writing the wave file
[1] "995 bravo NNBB12 2019-12-02 09:31:59 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 135372941 135811491"
channels' data will be rounded to integers for writing the wave file
[1] "996 bravo NNBB12 2019-12-02 09:32:15 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 136074620 136513170"
channels' data will be rounded to integers for writing the wave file
[1] "997 bravo NNBB12 2019-12-02 09:39:39 11 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 155546223 156028628"
channels' data will be rounded to integers for writing the wave file
[1] "998 bravo NNBB12 2019-12-02 09:48:10 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 177956108 178394658"
channels' data will be rounded to integers for writing the wave file
[1] "999 bravo NNBB12 2019-12-02 09:49:25 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 181245230 181683780"
channels' data will be rounded to integers for writing the wave file
[1] "1000 bravo NNBB12 2019-12-02 09:51:08 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 185762291 186200841"
channels' data will be rounded to integers for writing the wave file
[1] "1001 bravo NNBB12 2019-12-02 09:53:11 15 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 191156451 191814275"
channels' data will be rounded to integers for writing the wave file
[1] "1002 bravo NNBB12 2019-12-02 09:54:26 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 194445573 194884123"
channels' data will be rounded to integers for writing the wave file
[1] "1003 bravo NNBB12 2019-12-02 09:56:29 21 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 199839733 200760687"
channels' data will be rounded to integers for writing the wave file
[1] "1004 bravo NNBB12 2019-12-02 09:58:32 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 205233894 205672444"
channels' data will be rounded to integers for writing the wave file
[1] "1005 bravo NNBB12 2019-12-02 09:59:37 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 208084466 208523016"
channels' data will be rounded to integers for writing the wave file
[1] "1006 bravo NNBB12 2019-12-02 10:02:17 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 215101260 215539810"
channels' data will be rounded to integers for writing the wave file
[1] "1007 bravo NNBB12 2019-12-02 10:13:22 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 244264809 244703359"
channels' data will be rounded to integers for writing the wave file
[1] "1008 bravo NNBB12 2019-12-02 10:14:35 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 247466221 247904771"
channels' data will be rounded to integers for writing the wave file
[1] "1009 bravo NNBB12 2019-12-02 10:17:51 15 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 256061793 256719617"
channels' data will be rounded to integers for writing the wave file
[1] "1010 bravo NNBB12 2019-12-02 10:26:51 29 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 279743472 281015266"
channels' data will be rounded to integers for writing the wave file
[1] "1011 bravo NNBB12 2019-12-02 10:29:32 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 286804121 287242671"
channels' data will be rounded to integers for writing the wave file
[1] "1012 bravo NNBB12 2019-12-02 10:36:53 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 306144159 306582709"
channels' data will be rounded to integers for writing the wave file
[1] "3852 charlie NNBB12 2019-12-02 09:12:42 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 84632751 85071301"
channels' data will be rounded to integers for writing the wave file
[1] "3853 charlie NNBB12 2019-12-02 09:19:52 12 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 103490384 104016644"
channels' data will be rounded to integers for writing the wave file
[1] "3854 charlie NNBB12 2019-12-02 09:31:45 12 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 134758971 135285231"
channels' data will be rounded to integers for writing the wave file
[1] "3855 charlie NNBB12 2019-12-02 09:38:17 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 151950116 152388666"
channels' data will be rounded to integers for writing the wave file
[1] "3856 charlie NNBB12 2019-12-02 09:49:34 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 181639925 182078475"
channels' data will be rounded to integers for writing the wave file
[1] "3857 charlie NNBB12 2019-12-02 09:53:05 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 190893321 191331871"
channels' data will be rounded to integers for writing the wave file
[1] "3858 charlie NNBB12 2019-12-02 09:54:33 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 194752558 195191108"
channels' data will be rounded to integers for writing the wave file
[1] "3859 charlie NNBB12 2019-12-02 09:56:11 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 199050344 199488894"
channels' data will be rounded to integers for writing the wave file
[1] "3860 charlie NNBB12 2019-12-02 09:57:40 12 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 202953436 203479696"
channels' data will be rounded to integers for writing the wave file
[1] "3861 charlie NNBB12 2019-12-02 09:59:00 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 206461833 206900383"
channels' data will be rounded to integers for writing the wave file
[1] "3862 charlie NNBB12 2019-12-02 10:03:08 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 217337863 217776413"
channels' data will be rounded to integers for writing the wave file
[1] "3863 charlie NNBB12 2019-12-02 10:06:47 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 226942099 227380649"
channels' data will be rounded to integers for writing the wave file
[1] "3864 charlie NNBB12 2019-12-02 10:09:01 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 232818664 233257214"
channels' data will be rounded to integers for writing the wave file
[1] "3865 charlie NNBB12 2019-12-02 10:13:37 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 244922633 245361183"
channels' data will be rounded to integers for writing the wave file
[1] "3866 charlie NNBB12 2019-12-02 10:16:40 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 252948091 253386641"
channels' data will be rounded to integers for writing the wave file
[1] "3867 charlie NNBB12 2019-12-02 10:25:34 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 276366640 276805190"
channels' data will be rounded to integers for writing the wave file
[1] "3868 charlie NNBB12 2019-12-02 10:32:07 10 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 293601640 294040190"
channels' data will be rounded to integers for writing the wave file
[1] "3869 charlie NNBB12 2019-12-02 10:33:54 15 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 298294121 298951945"
channels' data will be rounded to integers for writing the wave file
[1] "3870 charlie NNBB12 2019-12-02 10:35:19 13 data/2019 BAR recordings/NNBB Bellbird nests/NNBB12/NNBB12_20191202_STUDY [-39.1244 176.8052]/NNBB12_20191202_084032_SunriseToSunset [-39.1244 176.8052].wav 43854.960977642 302021792 302591906"
channels' data will be rounded to integers for writing the wave file
[1] "5691 delta NNK30 2019-12-13 16:43:11 10 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 4119128 4557492"
channels' data will be rounded to integers for writing the wave file
[1] "5692 delta NNK30 2019-12-13 16:45:10 10 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 9335656 9774020"
channels' data will be rounded to integers for writing the wave file
[1] "5693 delta NNK30 2019-12-13 16:46:57 10 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 14026147 14464511"
channels' data will be rounded to integers for writing the wave file
[1] "5694 delta NNK30 2019-12-13 16:57:22 12 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 41423875 41949911"
channels' data will be rounded to integers for writing the wave file
[1] "5695 delta NNK30 2019-12-13 17:03:39 12 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 57950185 58476221"
channels' data will be rounded to integers for writing the wave file
[1] "5696 delta NNK30 2019-12-13 17:05:21 10 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 62421495 62859859"
channels' data will be rounded to integers for writing the wave file
[1] "5697 delta NNK30 2019-12-13 17:06:26 10 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 65270859 65709223"
channels' data will be rounded to integers for writing the wave file
[1] "5698 delta NNK30 2019-12-13 17:08:13 13 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 69961350 70531223"
channels' data will be rounded to integers for writing the wave file
[1] "5699 delta NNK30 2019-12-13 17:23:21 15 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 109764770 110422315"
channels' data will be rounded to integers for writing the wave file
[1] "5700 delta NNK30 2019-12-13 17:27:54 13 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 121732098 122301971"
channels' data will be rounded to integers for writing the wave file
[1] "5701 delta NNK30 2019-12-13 17:37:26 10 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 146806499 147244863"
channels' data will be rounded to integers for writing the wave file
[1] "5702 delta NNK30 2019-12-13 17:39:12 10 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 151453154 151891518"
channels' data will be rounded to integers for writing the wave file
[1] "5703 delta NNK30 2019-12-13 18:07:43 10 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 226457176 226895540"
channels' data will be rounded to integers for writing the wave file
[1] "5704 delta NNK30 2019-12-13 18:08:52 13 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 229481886 230051759"
channels' data will be rounded to integers for writing the wave file
[1] "5705 delta NNK30 2019-12-13 18:12:00 10 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 237723122 238161486"
channels' data will be rounded to integers for writing the wave file
[1] "5706 delta NNK30 2019-12-13 18:13:13 10 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 240923177 241361541"
channels' data will be rounded to integers for writing the wave file
[1] "5707 delta NNK30 2019-12-13 18:16:58 10 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 250786359 251224723"
channels' data will be rounded to integers for writing the wave file
[1] "5708 delta NNK30 2019-12-13 18:20:12 13 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 259290614 259860487"
channels' data will be rounded to integers for writing the wave file
[1] "5709 delta NNK30 2019-12-13 18:23:30 10 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 267970215 268408579"
channels' data will be rounded to integers for writing the wave file
[1] "5710 delta NNK30 2019-12-13 18:33:36 10 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 294535053 294973417"
channels' data will be rounded to integers for writing the wave file
[1] "6004 echo NNK30 2019-12-13 16:58:53 10 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 45412985 45851349"
channels' data will be rounded to integers for writing the wave file
[1] "6005 echo NNK30 2019-12-13 16:59:48 12 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 47823985 48350021"
channels' data will be rounded to integers for writing the wave file
[1] "6006 echo NNK30 2019-12-13 17:02:24 10 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 54662458 55100822"
channels' data will be rounded to integers for writing the wave file
[1] "6007 echo NNK30 2019-12-13 17:05:13 10 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 62070804 62509168"
channels' data will be rounded to integers for writing the wave file
[1] "6008 echo NNK30 2019-12-13 17:20:06 10 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 101216679 101655043"
channels' data will be rounded to integers for writing the wave file
[1] "6009 echo NNK30 2019-12-13 17:23:14 10 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 109457915 109896279"
channels' data will be rounded to integers for writing the wave file
[1] "6010 echo NNK30 2019-12-13 17:36:16 13 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 143737954 144307827"
channels' data will be rounded to integers for writing the wave file
[1] "6011 echo NNK30 2019-12-13 17:46:47 12 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 171398701 171924737"
channels' data will be rounded to integers for writing the wave file
[1] "6012 echo NNK30 2019-12-13 17:53:08 12 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 188100356 188626392"
channels' data will be rounded to integers for writing the wave file
[1] "6013 echo NNK30 2019-12-13 18:06:58 10 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 224484540 224922904"
channels' data will be rounded to integers for writing the wave file
[1] "6014 echo NNK30 2019-12-13 18:08:39 10 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 228912013 229350377"
channels' data will be rounded to integers for writing the wave file
[1] "6015 echo NNK30 2019-12-13 18:09:57 10 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 232331249 232769613"
channels' data will be rounded to integers for writing the wave file
[1] "6016 echo NNK30 2019-12-13 18:12:14 10 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 238336831 238775195"
channels' data will be rounded to integers for writing the wave file
[1] "6017 echo NNK30 2019-12-13 18:17:48 13 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 252978178 253548051"
channels' data will be rounded to integers for writing the wave file
[1] "6018 echo NNK30 2019-12-13 18:18:57 10 data/2019 BAR recordings/NNK Kamahi nests/NNK30/NNK30_20191213_STUDY [-39.1072 176.8183]/NNK30_20191213_164039_SunriseToSunset [-39.1072 176.8183].wav 43836.3659858274 256002887 256441251"
channels' data will be rounded to integers for writing the wave file
[1] "6404 foxtrot NNK31 2019-12-19 06:52:35 10 data/2019 BAR recordings/NNK Kamahi nests/NNK31/NNK31_20191219_STUDY [-39.1138 176.8174]/NNK31_20191219_064141_SunriseToSunset [-39.1138 176.8174].wav 43817.8693900236 29023357 29461536"
channels' data will be rounded to integers for writing the wave file
[1] "6405 foxtrot NNK31 2019-12-19 06:56:34 10 data/2019 BAR recordings/NNK Kamahi nests/NNK31/NNK31_20191219_STUDY [-39.1138 176.8174]/NNK31_20191219_064141_SunriseToSunset [-39.1138 176.8174].wav 43817.8693900236 39495828 39934007"
channels' data will be rounded to integers for writing the wave file
[1] "6406 foxtrot NNK31 2019-12-19 07:03:40 10 data/2019 BAR recordings/NNK Kamahi nests/NNK31/NNK31_20191219_STUDY [-39.1138 176.8174]/NNK31_20191219_064141_SunriseToSunset [-39.1138 176.8174].wav 43817.8693900236 58162240 58600419"
channels' data will be rounded to integers for writing the wave file
[1] "6407 foxtrot NNK31 2019-12-19 07:04:43 10 data/2019 BAR recordings/NNK Kamahi nests/NNK31/NNK31_20191219_STUDY [-39.1138 176.8174]/NNK31_20191219_064141_SunriseToSunset [-39.1138 176.8174].wav 43817.8693900236 60922766 61360945"
channels' data will be rounded to integers for writing the wave file
[1] "6408 foxtrot NNK31 2019-12-19 07:36:40 10 data/2019 BAR recordings/NNK Kamahi nests/NNK31/NNK31_20191219_STUDY [-39.1138 176.8174]/NNK31_20191219_064141_SunriseToSunset [-39.1138 176.8174].wav 43817.8693900236 144921622 145359801"
channels' data will be rounded to integers for writing the wave file
[1] "6409 foxtrot NNK31 2019-12-19 07:40:12 10 data/2019 BAR recordings/NNK Kamahi nests/NNK31/NNK31_20191219_STUDY [-39.1138 176.8174]/NNK31_20191219_064141_SunriseToSunset [-39.1138 176.8174].wav 43817.8693900236 154211010 154649189"
channels' data will be rounded to integers for writing the wave file
[1] "6410 foxtrot NNK31 2019-12-19 07:43:48 10 data/2019 BAR recordings/NNK Kamahi nests/NNK31/NNK31_20191219_STUDY [-39.1138 176.8174]/NNK31_20191219_064141_SunriseToSunset [-39.1138 176.8174].wav 43817.8693900236 163675670 164113849"
channels' data will be rounded to integers for writing the wave file
[1] "6411 foxtrot NNK31 2019-12-19 07:45:56 10 data/2019 BAR recordings/NNK Kamahi nests/NNK31/NNK31_20191219_STUDY [-39.1138 176.8174]/NNK31_20191219_064141_SunriseToSunset [-39.1138 176.8174].wav 43817.8693900236 169284357 169722536"
channels' data will be rounded to integers for writing the wave file
[1] "6412 foxtrot NNK31 2019-12-19 07:47:44 10 data/2019 BAR recordings/NNK Kamahi nests/NNK31/NNK31_20191219_STUDY [-39.1138 176.8174]/NNK31_20191219_064141_SunriseToSunset [-39.1138 176.8174].wav 43817.8693900236 174016687 174454866"
channels' data will be rounded to integers for writing the wave file
[1] "6413 foxtrot NNK31 2019-12-19 07:49:10 10 data/2019 BAR recordings/NNK Kamahi nests/NNK31/NNK31_20191219_STUDY [-39.1138 176.8174]/NNK31_20191219_064141_SunriseToSunset [-39.1138 176.8174].wav 43817.8693900236 177785024 178223203"
channels' data will be rounded to integers for writing the wave file
[1] "6414 foxtrot NNK31 2019-12-19 07:50:43 10 data/2019 BAR recordings/NNK Kamahi nests/NNK31/NNK31_20191219_STUDY [-39.1138 176.8174]/NNK31_20191219_064141_SunriseToSunset [-39.1138 176.8174].wav 43817.8693900236 181860086 182298265"
channels' data will be rounded to integers for writing the wave file
[1] "6415 foxtrot NNK31 2019-12-19 07:53:49 10 data/2019 BAR recordings/NNK Kamahi nests/NNK31/NNK31_20191219_STUDY [-39.1138 176.8174]/NNK31_20191219_064141_SunriseToSunset [-39.1138 176.8174].wav 43817.8693900236 190010209 190448388"
channels' data will be rounded to integers for writing the wave file
[1] "6416 foxtrot NNK31 2019-12-19 08:17:08 10 data/2019 BAR recordings/NNK Kamahi nests/NNK31/NNK31_20191219_STUDY [-39.1138 176.8174]/NNK31_20191219_064141_SunriseToSunset [-39.1138 176.8174].wav 43817.8693900236 251311409 251749588"
channels' data will be rounded to integers for writing the wave file
[1] "6417 foxtrot NNK31 2019-12-19 08:20:56 10 data/2019 BAR recordings/NNK Kamahi nests/NNK31/NNK31_20191219_STUDY [-39.1138 176.8174]/NNK31_20191219_064141_SunriseToSunset [-39.1138 176.8174].wav 43817.8693900236 261301883 261740062"
channels' data will be rounded to integers for writing the wave file
[1] "6418 foxtrot NNK31 2019-12-19 08:23:55 10 data/2019 BAR recordings/NNK Kamahi nests/NNK31/NNK31_20191219_STUDY [-39.1138 176.8174]/NNK31_20191219_064141_SunriseToSunset [-39.1138 176.8174].wav 43817.8693900236 269145282 269583461"
channels' data will be rounded to integers for writing the wave file
[1] "6419 foxtrot NNK31 2019-12-19 08:25:58 10 data/2019 BAR recordings/NNK Kamahi nests/NNK31/NNK31_20191219_STUDY [-39.1138 176.8174]/NNK31_20191219_064141_SunriseToSunset [-39.1138 176.8174].wav 43817.8693900236 274534880 274973059"
channels' data will be rounded to integers for writing the wave file
[1] "6420 foxtrot NNK31 2019-12-19 08:33:38 10 data/2019 BAR recordings/NNK Kamahi nests/NNK31/NNK31_20191219_STUDY [-39.1138 176.8174]/NNK31_20191219_064141_SunriseToSunset [-39.1138 176.8174].wav 43817.8693900236 294691099 295129278"
channels' data will be rounded to integers for writing the wave file
[1] "6421 foxtrot NNK31 2019-12-19 08:36:59 10 data/2019 BAR recordings/NNK Kamahi nests/NNK31/NNK31_20191219_STUDY [-39.1138 176.8174]/NNK31_20191219_064141_SunriseToSunset [-39.1138 176.8174].wav 43817.8693900236 303498491 303936670"
channels' data will be rounded to integers for writing the wave file
[1] "6422 foxtrot NNK31 2019-12-19 08:40:07 10 data/2019 BAR recordings/NNK Kamahi nests/NNK31/NNK31_20191219_STUDY [-39.1138 176.8174]/NNK31_20191219_064141_SunriseToSunset [-39.1138 176.8174].wav 43817.8693900236 311736251 312174430"
channels' data will be rounded to integers for writing the wave file
[1] "9310 hotel NNK34 2020-01-12 07:01:40 10 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 -1284209 -845538"
channels' data will be rounded to integers for writing the wave file
[1] "9311 hotel NNK34 2020-01-12 07:02:47 12 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 1654886 2181291"
channels' data will be rounded to integers for writing the wave file
[1] "9312 hotel NNK34 2020-01-12 07:03:52 16 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 4506248 5208122"
channels' data will be rounded to integers for writing the wave file
[1] "9313 hotel NNK34 2020-01-12 07:05:53 12 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 9814167 10340572"
channels' data will be rounded to integers for writing the wave file
[1] "9314 hotel NNK34 2020-01-12 07:07:20 12 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 13630604 14157009"
channels' data will be rounded to integers for writing the wave file
[1] "9315 hotel NNK34 2020-01-12 07:11:31 12 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 24641246 25167651"
channels' data will be rounded to integers for writing the wave file
[1] "9316 hotel NNK34 2020-01-12 07:12:37 10 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 27536475 27975146"
channels' data will be rounded to integers for writing the wave file
[1] "9317 hotel NNK34 2020-01-12 07:15:13 10 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 34379742 34818413"
channels' data will be rounded to integers for writing the wave file
[1] "9318 hotel NNK34 2020-01-12 07:15:24 10 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 34862280 35300951"
channels' data will be rounded to integers for writing the wave file
[1] "9319 hotel NNK34 2020-01-12 07:17:52 12 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 41354611 41881016"
channels' data will be rounded to integers for writing the wave file
[1] "9320 hotel NNK34 2020-01-12 07:20:10 13 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 47408270 47978542"
channels' data will be rounded to integers for writing the wave file
[1] "9321 hotel NNK34 2020-01-12 07:22:25 10 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 53330329 53769000"
channels' data will be rounded to integers for writing the wave file
[1] "9322 hotel NNK34 2020-01-12 07:34:52 17 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 86099051 86844792"
channels' data will be rounded to integers for writing the wave file
[1] "9323 hotel NNK34 2020-01-12 07:38:43 11 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 96232351 96714889"
channels' data will be rounded to integers for writing the wave file
[1] "9324 hotel NNK34 2020-01-12 07:42:47 10 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 106935923 107374594"
channels' data will be rounded to integers for writing the wave file
[1] "9325 hotel NNK34 2020-01-12 07:50:23 10 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 126939320 127377991"
channels' data will be rounded to integers for writing the wave file
[1] "9326 hotel NNK34 2020-01-12 07:51:47 10 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 130624157 131062828"
channels' data will be rounded to integers for writing the wave file
[1] "9327 hotel NNK34 2020-01-12 07:53:11 12 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 134308993 134835398"
channels' data will be rounded to integers for writing the wave file
[1] "9328 hotel NNK34 2020-01-12 07:56:04 11 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 141898001 142380539"
channels' data will be rounded to integers for writing the wave file
[1] "9329 hotel NNK34 2020-01-12 07:59:44 12 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 151548763 152075168"
channels' data will be rounded to integers for writing the wave file
[1] "9330 hotel NNK34 2020-01-12 08:00:02 15 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 152338371 152996377"
channels' data will be rounded to integers for writing the wave file
[1] "9331 hotel NNK34 2020-01-12 08:01:58 12 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 157426954 157953359"
channels' data will be rounded to integers for writing the wave file
[1] "9332 hotel NNK34 2020-01-12 08:03:29 13 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 161418860 161989132"
channels' data will be rounded to integers for writing the wave file
[1] "9333 hotel NNK34 2020-01-12 08:05:33 10 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 166858380 167297051"
channels' data will be rounded to integers for writing the wave file
[1] "9334 hotel NNK34 2020-01-12 08:05:54 10 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 167779589 168218260"
channels' data will be rounded to integers for writing the wave file
[1] "9335 hotel NNK34 2020-01-12 08:08:09 11 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 173701648 174184186"
channels' data will be rounded to integers for writing the wave file
[1] "9336 hotel NNK34 2020-01-12 08:12:44 13 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 185765100 186335372"
channels' data will be rounded to integers for writing the wave file
[1] "9337 hotel NNK34 2020-01-12 08:15:22 12 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 192696102 193222507"
channels' data will be rounded to integers for writing the wave file
[1] "9338 hotel NNK34 2020-01-12 08:15:54 14 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 194099849 194713988"
channels' data will be rounded to integers for writing the wave file
[1] "9339 hotel NNK34 2020-01-12 08:16:28 12 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 195591330 196117735"
channels' data will be rounded to integers for writing the wave file
[1] "9340 hotel NNK34 2020-01-12 08:18:46 13 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 201644990 202215262"
channels' data will be rounded to integers for writing the wave file
[1] "9341 hotel NNK34 2020-01-12 08:19:52 12 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 204540218 205066623"
channels' data will be rounded to integers for writing the wave file
[1] "9342 hotel NNK34 2020-01-12 08:20:38 10 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 206558105 206996776"
channels' data will be rounded to integers for writing the wave file
[1] "9343 hotel NNK34 2020-01-12 08:31:29 11 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 235115586 235598124"
channels' data will be rounded to integers for writing the wave file
[1] "9344 hotel NNK34 2020-01-12 08:40:56 12 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 259988231 260514636"
channels' data will be rounded to integers for writing the wave file
[1] "9345 hotel NNK34 2020-01-12 08:42:21 10 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 263716934 264155605"
channels' data will be rounded to integers for writing the wave file
[1] "9346 hotel NNK34 2020-01-12 08:44:40 12 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 269814461 270340866"
channels' data will be rounded to integers for writing the wave file
[1] "11851 india NNK34 2020-01-12 07:01:02 11 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 -2951159 -2468621"
channels' data will be rounded to integers for writing the wave file
[1] "11852 india NNK34 2020-01-12 07:01:56 10 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 -582336 -143665"
channels' data will be rounded to integers for writing the wave file
[1] "11853 india NNK34 2020-01-12 07:03:36 10 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 3804374 4243045"
channels' data will be rounded to integers for writing the wave file
[1] "11854 india NNK34 2020-01-12 07:06:57 10 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 12621661 13060332"
channels' data will be rounded to integers for writing the wave file
[1] "11855 india NNK34 2020-01-12 07:07:33 10 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 14200877 14639548"
channels' data will be rounded to integers for writing the wave file
[1] "11856 india NNK34 2020-01-12 07:12:04 15 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 26088860 26746866"
channels' data will be rounded to integers for writing the wave file
[1] "11857 india NNK34 2020-01-12 07:13:48 10 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 30651039 31089710"
channels' data will be rounded to integers for writing the wave file
[1] "11858 india NNK34 2020-01-12 07:21:11 10 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 50084163 50522834"
channels' data will be rounded to integers for writing the wave file
[1] "11859 india NNK34 2020-01-12 07:26:30 10 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 64077768 64516439"
channels' data will be rounded to integers for writing the wave file
[1] "11860 india NNK34 2020-01-12 07:33:40 11 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 82940620 83423158"
channels' data will be rounded to integers for writing the wave file
[1] "11861 india NNK34 2020-01-12 07:36:58 10 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 91626306 92064977"
channels' data will be rounded to integers for writing the wave file
[1] "11862 india NNK34 2020-01-12 07:39:24 18 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 98030902 98820510"
channels' data will be rounded to integers for writing the wave file
[1] "11863 india NNK34 2020-01-12 07:42:36 10 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 106453385 106892056"
channels' data will be rounded to integers for writing the wave file
[1] "11864 india NNK34 2020-01-12 07:43:54 12 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 109875019 110401424"
channels' data will be rounded to integers for writing the wave file
[1] "11865 india NNK34 2020-01-12 07:58:09 13 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 147381388 147951660"
channels' data will be rounded to integers for writing the wave file
[1] "11866 india NNK34 2020-01-12 07:59:53 12 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 151943567 152469972"
channels' data will be rounded to integers for writing the wave file
[1] "11867 india NNK34 2020-01-12 08:06:30 12 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 169358805 169885210"
channels' data will be rounded to integers for writing the wave file
[1] "11868 india NNK34 2020-01-12 08:08:31 13 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 174666724 175236996"
channels' data will be rounded to integers for writing the wave file
[1] "11869 india NNK34 2020-01-12 08:11:22 10 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 182167998 182606669"
channels' data will be rounded to integers for writing the wave file
[1] "11870 india NNK34 2020-01-12 08:13:09 10 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 186861777 187300448"
channels' data will be rounded to integers for writing the wave file
[1] "11871 india NNK34 2020-01-12 08:23:57 10 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 215287657 215726328"
channels' data will be rounded to integers for writing the wave file
[1] "11872 india NNK34 2020-01-12 08:32:05 12 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 236694802 237221207"
channels' data will be rounded to integers for writing the wave file
[1] "11873 india NNK34 2020-01-12 08:37:47 13 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 251697349 252267621"
channels' data will be rounded to integers for writing the wave file
[1] "11874 india NNK34 2020-01-12 08:39:44 11 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 256829800 257312338"
channels' data will be rounded to integers for writing the wave file
[1] "11875 india NNK34 2020-01-12 08:46:34 10 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 274815310 275253981"
channels' data will be rounded to integers for writing the wave file
[1] "11876 india NNK34 2020-01-12 08:52:01 13 data/2019 BAR recordings/NNK Kamahi nests/NNK34/NNK34_20200112_STUDY [-39.1108 176.8199]/NNK34_20200112_070034_Rec [-39.1108 176.8199].wav 43867.098791163 289159852 289730124"
channels' data will be rounded to integers for writing the wave file
[1] "13499 juliet NNK35 2019-12-26 13:21:47 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 53845713 54284016"
channels' data will be rounded to integers for writing the wave file
[1] "13500 juliet NNK35 2019-12-26 13:25:19 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 63137732 63576035"
channels' data will be rounded to integers for writing the wave file
[1] "13501 juliet NNK35 2019-12-26 13:27:04 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 67739911 68178214"
channels' data will be rounded to integers for writing the wave file
[1] "13502 juliet NNK35 2019-12-26 13:31:02 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 78171516 78609819"
channels' data will be rounded to integers for writing the wave file
[1] "13503 juliet NNK35 2019-12-26 13:34:29 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 87244383 87682686"
channels' data will be rounded to integers for writing the wave file
[1] "13504 juliet NNK35 2019-12-26 13:37:27 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 95046172 95484475"
channels' data will be rounded to integers for writing the wave file
[1] "13505 juliet NNK35 2019-12-26 13:45:02 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 114988948 115427251"
channels' data will be rounded to integers for writing the wave file
[1] "13506 juliet NNK35 2019-12-26 13:49:40 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 127173765 127612068"
channels' data will be rounded to integers for writing the wave file
[1] "13507 juliet NNK35 2019-12-26 13:56:29 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 145100348 145538651"
channels' data will be rounded to integers for writing the wave file
[1] "13508 juliet NNK35 2019-12-26 14:06:41 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 171924476 172362779"
channels' data will be rounded to integers for writing the wave file
[1] "13509 juliet NNK35 2019-12-26 14:10:17 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 181391816 181830119"
channels' data will be rounded to integers for writing the wave file
[1] "13510 juliet NNK35 2019-12-26 14:15:55 11 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 196206449 196688582"
channels' data will be rounded to integers for writing the wave file
[1] "13511 juliet NNK35 2019-12-26 14:29:16 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 231314500 231752803"
channels' data will be rounded to integers for writing the wave file
[1] "13512 juliet NNK35 2019-12-26 14:29:53 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 232936220 233374523"
channels' data will be rounded to integers for writing the wave file
[1] "13513 juliet NNK35 2019-12-26 14:35:21 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 247312551 247750854"
channels' data will be rounded to integers for writing the wave file
[1] "13514 juliet NNK35 2019-12-26 14:36:20 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 249898537 250336840"
channels' data will be rounded to integers for writing the wave file
[1] "13515 juliet NNK35 2019-12-26 14:45:19 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 273523056 273961359"
channels' data will be rounded to integers for writing the wave file
[1] "14782 kilo NNK35 2019-12-26 13:07:07 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 15275070 15713373"
channels' data will be rounded to integers for writing the wave file
[1] "14783 kilo NNK35 2019-12-26 13:17:07 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 41573236 42011539"
channels' data will be rounded to integers for writing the wave file
[1] "14784 kilo NNK35 2019-12-26 13:19:11 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 47008190 47446493"
channels' data will be rounded to integers for writing the wave file
[1] "14785 kilo NNK35 2019-12-26 13:20:18 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 49944819 50383122"
channels' data will be rounded to integers for writing the wave file
[1] "14786 kilo NNK35 2019-12-26 13:21:13 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 52355484 52793787"
channels' data will be rounded to integers for writing the wave file
[1] "14787 kilo NNK35 2019-12-26 13:21:42 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 53626562 54064865"
channels' data will be rounded to integers for writing the wave file
[1] "14788 kilo NNK35 2019-12-26 13:23:46 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 59061516 59499819"
channels' data will be rounded to integers for writing the wave file
[1] "14789 kilo NNK35 2019-12-26 13:29:01 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 72868053 73306356"
channels' data will be rounded to integers for writing the wave file
[1] "14790 kilo NNK35 2019-12-26 13:29:47 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 74884246 75322549"
channels' data will be rounded to integers for writing the wave file
[1] "14791 kilo NNK35 2019-12-26 13:31:56 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 80538351 80976654"
channels' data will be rounded to integers for writing the wave file
[1] "14792 kilo NNK35 2019-12-26 13:32:47 11 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 82773695 83255828"
channels' data will be rounded to integers for writing the wave file
[1] "14793 kilo NNK35 2019-12-26 13:58:15 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 149746357 150184660"
channels' data will be rounded to integers for writing the wave file
[1] "14794 kilo NNK35 2019-12-26 13:59:54 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 154085554 154523857"
channels' data will be rounded to integers for writing the wave file
[1] "14795 kilo NNK35 2019-12-26 14:00:59 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 156934522 157372825"
channels' data will be rounded to integers for writing the wave file
[1] "14796 kilo NNK35 2019-12-26 14:01:59 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 159564339 160002642"
channels' data will be rounded to integers for writing the wave file
[1] "14797 kilo NNK35 2019-12-26 14:06:32 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 171530004 171968307"
channels' data will be rounded to integers for writing the wave file
[1] "14798 kilo NNK35 2019-12-26 14:09:13 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 178586678 179024981"
channels' data will be rounded to integers for writing the wave file
[1] "14799 kilo NNK35 2019-12-26 14:10:03 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 180778192 181216495"
channels' data will be rounded to integers for writing the wave file
[1] "14800 kilo NNK35 2019-12-26 14:12:19 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 186739110 187177413"
channels' data will be rounded to integers for writing the wave file
[1] "14801 kilo NNK35 2019-12-26 14:25:54 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 222460785 222899088"
channels' data will be rounded to integers for writing the wave file
[1] "14802 kilo NNK35 2019-12-26 14:26:52 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 225002941 225441244"
channels' data will be rounded to integers for writing the wave file
[1] "14803 kilo NNK35 2019-12-26 14:28:01 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 228027230 228465533"
channels' data will be rounded to integers for writing the wave file
[1] "14804 kilo NNK35 2019-12-26 14:33:34 15 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 242622711 243280165"
channels' data will be rounded to integers for writing the wave file
[1] "14805 kilo NNK35 2019-12-26 14:35:02 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 246479776 246918079"
channels' data will be rounded to integers for writing the wave file
[1] "14806 kilo NNK35 2019-12-26 14:36:41 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 250818973 251257276"
channels' data will be rounded to integers for writing the wave file
[1] "14807 kilo NNK35 2019-12-26 14:39:11 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 257393514 257831817"
channels' data will be rounded to integers for writing the wave file
[1] "14808 kilo NNK35 2019-12-26 14:40:24 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 260593125 261031428"
channels' data will be rounded to integers for writing the wave file
[1] "14809 kilo NNK35 2019-12-26 14:44:49 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 272208148 272646451"
channels' data will be rounded to integers for writing the wave file
[1] "14810 kilo NNK35 2019-12-26 14:48:34 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 282069960 282508263"
channels' data will be rounded to integers for writing the wave file
[1] "14811 kilo NNK35 2019-12-26 14:50:09 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 286233836 286672139"
channels' data will be rounded to integers for writing the wave file
[1] "14812 kilo NNK35 2019-12-26 14:54:29 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 297629708 298068011"
channels' data will be rounded to integers for writing the wave file
[1] "14813 kilo NNK35 2019-12-26 14:59:48 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 311611566 312049869"
channels' data will be rounded to integers for writing the wave file
[1] "16011 lima NNK35 2019-12-26 13:14:13 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 33946768 34385071"
channels' data will be rounded to integers for writing the wave file
[1] "16012 lima NNK35 2019-12-26 13:22:27 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 55598924 56037227"
channels' data will be rounded to integers for writing the wave file
[1] "16013 lima NNK35 2019-12-26 13:23:14 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 57658947 58097250"
channels' data will be rounded to integers for writing the wave file
[1] "16014 lima NNK35 2019-12-26 13:33:39 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 85052870 85491173"
channels' data will be rounded to integers for writing the wave file
[1] "16015 lima NNK35 2019-12-26 13:36:55 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 93643604 94081907"
channels' data will be rounded to integers for writing the wave file
[1] "16016 lima NNK35 2019-12-26 13:53:11 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 136421953 136860256"
channels' data will be rounded to integers for writing the wave file
[1] "16017 lima NNK35 2019-12-26 14:01:13 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 157548146 157986449"
channels' data will be rounded to integers for writing the wave file
[1] "16018 lima NNK35 2019-12-26 14:25:59 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 222679936 223118239"
channels' data will be rounded to integers for writing the wave file
[1] "16019 lima NNK35 2019-12-26 14:26:29 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 223994844 224433147"
channels' data will be rounded to integers for writing the wave file
[1] "16020 lima NNK35 2019-12-26 14:27:04 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 225528904 225967207"
channels' data will be rounded to integers for writing the wave file
[1] "16021 lima NNK35 2019-12-26 14:30:57 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 235741358 236179661"
channels' data will be rounded to integers for writing the wave file
[1] "16022 lima NNK35 2019-12-26 14:35:29 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 247663193 248101496"
channels' data will be rounded to integers for writing the wave file
[1] "16023 lima NNK35 2019-12-26 14:41:42 10 data/2019 BAR recordings/NNK Kamahi nests/NNK35/NNK35_20191226_STUDY/NNK35_20191226_130039_Rec.wav 43830.275909975 264011886 264450189"
channels' data will be rounded to integers for writing the wave file
[1] "16393 mike NNS1 2019-11-29 16:46:30 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 13770973 14211973"
[1] "16394 mike NNS1 2019-11-29 16:48:22 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 18710173 19151173"
[1] "16395 mike NNS1 2019-11-29 16:48:57 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 20253673 20826973"
[1] "16396 mike NNS1 2019-11-29 16:49:26 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 21532573 22105873"
[1] "16397 mike NNS1 2019-11-29 16:50:59 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 25633873 26251273"
[1] "16398 mike NNS1 2019-11-29 16:52:01 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 28368073 28985473"
[1] "16399 mike NNS1 2019-11-29 16:52:47 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 30396673 30837673"
[1] "16400 mike NNS1 2019-11-29 16:54:36 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 35203573 35776873"
[1] "16401 mike NNS1 2019-11-29 16:55:35 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 37805473 38378773"
[1] "16402 mike NNS1 2019-11-29 16:59:34 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 48345373 48786373"
[1] "16403 mike NNS1 2019-11-29 17:04:15 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 60737473 61178473"
[1] "16404 mike NNS1 2019-11-29 17:08:09 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 71056873 71674273"
[1] "16405 mike NNS1 2019-11-29 17:11:00 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 78597973 79171273"
[1] "16406 mike NNS1 2019-11-29 17:13:07 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 84198673 84771973"
[1] "16407 mike NNS1 2019-11-29 17:22:21 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 108630073 109071073"
[1] "16408 mike NNS1 2019-11-29 17:27:12 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 121463173 121904173"
[1] "16409 mike NNS1 2019-11-29 17:32:07 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 134472673 134913673"
[1] "16410 mike NNS1 2019-11-29 17:33:58 16 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 139367773 140073373"
[1] "16411 mike NNS1 2019-11-29 17:40:58 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 157889773 158418973"
[1] "16412 mike NNS1 2019-11-29 17:45:31 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 169929073 170458273"
[1] "16413 mike NNS1 2019-11-29 17:59:24 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 206664373 207105373"
[1] "16414 mike NNS1 2019-11-29 18:00:20 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 209133973 209707273"
[1] "16415 mike NNS1 2019-11-29 18:01:07 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 211206673 211824073"
[1] "16416 mike NNS1 2019-11-29 18:02:29 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 214822873 215440273"
[1] "16417 mike NNS1 2019-11-29 18:03:21 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 217116073 217645273"
[1] "16418 mike NNS1 2019-11-29 18:04:34 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 220335373 220776373"
[1] "16419 mike NNS1 2019-11-29 18:19:11 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 259011073 259452073"
[1] "16420 mike NNS1 2019-11-29 18:21:04 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 263994373 264435373"
[1] "16421 mike NNS1 2019-11-29 18:29:27 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 286176673 286838173"
[1] "16422 mike NNS1 2019-11-29 18:33:33 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 297025273 297466273"
[1] "16773 mike NNS1 2019-12-01 06:46:42 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 13982851 14600251"
[1] "16774 mike NNS1 2019-12-01 06:47:24 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 15835051 16364251"
[1] "16775 mike NNS1 2019-12-01 06:48:08 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 17775451 18304651"
[1] "16776 mike NNS1 2019-12-01 06:49:05 16 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 20289151 20994751"
[1] "16777 mike NNS1 2019-12-01 06:50:03 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 22846951 23376151"
[1] "16778 mike NNS1 2019-12-01 06:50:40 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 24478651 24919651"
[1] "16779 mike NNS1 2019-12-01 06:51:17 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 26110351 26727751"
[1] "16780 mike NNS1 2019-12-01 06:53:02 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 30740851 31181851"
[1] "16781 mike NNS1 2019-12-01 06:55:09 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 36341551 36782551"
[1] "16782 mike NNS1 2019-12-01 06:55:50 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 38149651 38590651"
[1] "16783 mike NNS1 2019-12-01 06:56:33 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 40045951 40619251"
[1] "16784 mike NNS1 2019-12-01 06:57:13 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 41809951 42250951"
[1] "16785 mike NNS1 2019-12-01 06:57:31 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 42603751 43221151"
[1] "16786 mike NNS1 2019-12-01 06:59:55 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 48954151 49483351"
[1] "16787 mike NNS1 2019-12-01 07:00:39 16 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 50894551 51600151"
[1] "16788 mike NNS1 2019-12-01 07:01:05 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 52041151 52482151"
[1] "16789 mike NNS1 2019-12-01 07:03:44 24 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 59053051 60111451"
[1] "16790 mike NNS1 2019-12-01 07:05:37 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 64036351 64477351"
[1] "16791 mike NNS1 2019-12-01 07:06:20 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 65932651 66461851"
[1] "16792 mike NNS1 2019-12-01 07:06:40 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 66814651 67255651"
[1] "16793 mike NNS1 2019-12-01 07:10:08 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 75987451 76560751"
[1] "16794 mike NNS1 2019-12-01 07:10:57 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 78148351 78589351"
[1] "16795 mike NNS1 2019-12-01 07:15:29 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 90143551 90584551"
[1] "16796 mike NNS1 2019-12-01 07:16:11 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 91995751 92569051"
[1] "16797 mike NNS1 2019-12-01 07:16:32 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 92921851 93495151"
[1] "16798 mike NNS1 2019-12-01 07:21:01 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 104784751 105225751"
[1] "16799 mike NNS1 2019-12-01 07:24:13 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 113251951 113692951"
[1] "16800 mike NNS1 2019-12-01 07:27:48 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 122733451 123262651"
[1] "16801 mike NNS1 2019-12-01 07:29:08 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 126261451 126878851"
[1] "16802 mike NNS1 2019-12-01 07:42:46 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 162335251 162908551"
[1] "16803 mike NNS1 2019-12-01 07:50:55 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 183900151 184429351"
[1] "16804 mike NNS1 2019-12-01 07:51:24 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 185179051 185708251"
[1] "16805 mike NNS1 2019-12-01 07:55:18 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 195498451 195939451"
[1] "16806 mike NNS1 2019-12-01 07:55:31 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 196071751 196600951"
[1] "16807 mike NNS1 2019-12-01 07:56:23 29 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 198364951 199643851"
[1] "16808 mike NNS1 2019-12-01 07:57:27 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 201187351 201716551"
[1] "16809 mike NNS1 2019-12-01 07:57:43 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 201892951 202333951"
[1] "16810 mike NNS1 2019-12-01 07:58:42 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 204494851 205024051"
[1] "16811 mike NNS1 2019-12-01 07:59:22 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 206258851 206699851"
[1] "16812 mike NNS1 2019-12-01 07:59:45 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 207273151 207846451"
[1] "16813 mike NNS1 2019-12-01 08:00:26 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 209081251 209610451"
[1] "16814 mike NNS1 2019-12-01 08:00:47 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 210007351 210536551"
[1] "16815 mike NNS1 2019-12-01 08:01:39 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 212300551 212829751"
[1] "16816 mike NNS1 2019-12-01 08:02:54 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 215608051 216049051"
[1] "16817 mike NNS1 2019-12-01 08:06:28 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 225045451 225706951"
[1] "16818 mike NNS1 2019-12-01 08:08:00 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 229102651 229543651"
[1] "16819 mike NNS1 2019-12-01 08:09:24 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 232807051 233336251"
[1] "16820 mike NNS1 2019-12-01 08:09:58 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 234306451 234747451"
[1] "16821 mike NNS1 2019-12-01 08:10:24 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 235453051 235982251"
[1] "16822 mike NNS1 2019-12-01 08:17:18 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 253710451 254283751"
[1] "16823 mike NNS1 2019-12-01 08:20:13 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 261427951 262045351"
[1] "16824 mike NNS1 2019-12-01 08:25:15 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 274746151 275319451"
[1] "16825 mike NNS1 2019-12-01 08:31:21 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 290886751 291327751"
[1] "16826 mike NNS1 2019-12-01 08:32:42 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 294458851 295120351"
[1] "16827 mike NNS1 2019-12-01 08:34:23 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 298912951 299486251"
[1] "16828 mike NNS1 2019-12-01 08:35:37 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 302176351 302617351"
[1] "16829 mike NNS1 2019-12-01 08:38:13 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 309055951 309585151"
[1] "16830 mike NNS1 2019-12-01 08:38:38 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 310158451 310599451"
[1] "16831 mike NNS1 2019-12-01 08:39:53 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 313465951 313906951"
[1] "16832 mike NNS1 2019-12-01 08:40:14 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 314392051 314833051"
[1] "16864 mike NNS1 2019-12-01 10:41:53 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 1259159 1788359"
[1] "16865 mike NNS1 2019-12-01 10:42:16 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 2273459 2846759"
[1] "16866 mike NNS1 2019-12-01 10:43:50 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 6418859 6859859"
[1] "16867 mike NNS1 2019-12-01 10:45:46 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 11534459 11975459"
[1] "16868 mike NNS1 2019-12-01 10:53:47 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 32746559 33187559"
[1] "16869 mike NNS1 2019-12-01 10:54:07 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 33628559 34069559"
[1] "16870 mike NNS1 2019-12-01 10:55:02 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 36054059 36627359"
[1] "16871 mike NNS1 2019-12-01 10:56:05 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 38832359 39273359"
[1] "16872 mike NNS1 2019-12-01 10:59:54 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 48931259 49592759"
[1] "16873 mike NNS1 2019-12-01 11:01:21 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 52767959 53429459"
[1] "16874 mike NNS1 2019-12-01 11:05:55 16 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 64851359 65556959"
[1] "16875 mike NNS1 2019-12-01 11:09:27 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 74200559 74773859"
[1] "16876 mike NNS1 2019-12-01 11:12:54 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 83329259 83902559"
[1] "16877 mike NNS1 2019-12-01 11:20:13 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 102689159 103218359"
[1] "16878 mike NNS1 2019-12-01 11:29:56 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 128399459 128840459"
[1] "16879 mike NNS1 2019-12-01 11:31:36 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 132809459 133426859"
[1] "16880 mike NNS1 2019-12-01 11:33:16 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 137219459 137660459"
[1] "16881 mike NNS1 2019-12-01 11:33:55 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 138939359 139512659"
[1] "16882 mike NNS1 2019-12-01 11:43:11 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 163458959 163899959"
[1] "16883 mike NNS1 2019-12-01 11:43:55 18 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 165399359 166193159"
[1] "16884 mike NNS1 2019-12-01 11:56:44 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 199312259 199841459"
[1] "16885 mike NNS1 2019-12-01 11:58:09 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 203060759 203589959"
[1] "16886 mike NNS1 2019-12-01 11:59:55 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 207735359 208264559"
[1] "16887 mike NNS1 2019-12-01 12:00:16 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 208661459 209190659"
[1] "16888 mike NNS1 2019-12-01 12:04:17 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 219289559 219906959"
[1] "16889 mike NNS1 2019-12-01 12:05:54 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 223567259 224008259"
[1] "16890 mike NNS1 2019-12-01 12:07:39 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 228197759 228638759"
[1] "16891 mike NNS1 2019-12-01 12:09:41 19 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 233577959 234415859"
[1] "16892 mike NNS1 2019-12-01 12:13:28 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 243588659 244161959"
[1] "16893 mike NNS1 2019-12-01 12:24:33 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 272915159 273576659"
[1] "16894 mike NNS1 2019-12-01 12:28:16 16 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 282749459 283455059"
[1] "16895 mike NNS1 2019-12-01 12:29:10 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 285130859 285660059"
[1] "16896 mike NNS1 2019-12-01 12:29:53 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 287027159 287600459"
[1] "16897 mike NNS1 2019-12-01 12:32:57 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 295141559 295670759"
[1] "16898 mike NNS1 2019-12-01 12:36:09 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 303608759 304137959"
[1] "16899 mike NNS1 2019-12-01 12:39:29 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 312428759 312957959"
[1] "16926 mike NNS1 2019-12-01 14:42:55 16 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 3906546 4612146"
[1] "16927 mike NNS1 2019-12-01 14:52:46 19 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 29969646 30807546"
[1] "16928 mike NNS1 2019-12-01 15:24:37 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 114244746 114906246"
[1] "16929 mike NNS1 2019-12-01 15:25:19 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 116096946 116537946"
[1] "16930 mike NNS1 2019-12-01 15:26:35 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 119448546 120065946"
[1] "16931 mike NNS1 2019-12-01 15:27:25 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 121653546 122094546"
[1] "16932 mike NNS1 2019-12-01 15:28:31 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 124564146 125005146"
[1] "16933 mike NNS1 2019-12-01 15:28:50 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 125402046 125843046"
[1] "16934 mike NNS1 2019-12-01 15:29:57 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 128356746 128797746"
[1] "16935 mike NNS1 2019-12-01 15:32:58 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 136338846 136779846"
[1] "16936 mike NNS1 2019-12-01 15:33:11 18 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 136912146 137705946"
[1] "16937 mike NNS1 2019-12-01 15:36:01 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 144409146 144850146"
[1] "16938 mike NNS1 2019-12-01 15:40:02 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 155037246 155698746"
[1] "16939 mike NNS1 2019-12-01 15:42:51 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 162490146 163019346"
[1] "16940 mike NNS1 2019-12-01 15:57:01 16 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 199975146 200680746"
[1] "16941 mike NNS1 2019-12-01 16:02:25 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 214263546 214925046"
[1] "16942 mike NNS1 2019-12-01 16:03:36 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 217394646 217923846"
[1] "16943 mike NNS1 2019-12-01 16:06:24 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 224803446 225420846"
[1] "16944 mike NNS1 2019-12-01 16:10:12 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 234858246 235299246"
[1] "16945 mike NNS1 2019-12-01 17:26:42 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 120395308 120833502"
channels' data will be rounded to integers for writing the wave file
[1] "16946 mike NNS1 2019-12-01 17:32:20 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 135206261 135819732"
channels' data will be rounded to integers for writing the wave file
[1] "16947 mike NNS1 2019-12-01 17:35:49 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 144364514 144802708"
channels' data will be rounded to integers for writing the wave file
[1] "16948 mike NNS1 2019-12-01 17:37:28 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 148702633 149140827"
channels' data will be rounded to integers for writing the wave file
[1] "16949 mike NNS1 2019-12-01 17:39:21 19 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 153654224 154486792"
channels' data will be rounded to integers for writing the wave file
[1] "16950 mike NNS1 2019-12-01 17:41:44 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 159920397 160358591"
channels' data will be rounded to integers for writing the wave file
[1] "16951 mike NNS1 2019-12-01 17:50:58 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 184196339 184853630"
channels' data will be rounded to integers for writing the wave file
[1] "16952 mike NNS1 2019-12-01 17:59:43 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 207201518 207727351"
channels' data will be rounded to integers for writing the wave file
[1] "16953 mike NNS1 2019-12-01 18:00:18 16 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 208735197 209436307"
channels' data will be rounded to integers for writing the wave file
[1] "16954 mike NNS1 2019-12-01 18:03:02 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 215921576 216578867"
channels' data will be rounded to integers for writing the wave file
[1] "16955 mike NNS1 2019-12-01 18:05:57 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 223589969 224028163"
channels' data will be rounded to integers for writing the wave file
[1] "16956 mike NNS1 2019-12-01 18:08:45 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 230951627 231389821"
channels' data will be rounded to integers for writing the wave file
[1] "16957 mike NNS1 2019-12-01 18:09:57 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 234106623 234544817"
channels' data will be rounded to integers for writing the wave file
[1] "16958 mike NNS1 2019-12-01 18:10:39 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 235947037 236385231"
channels' data will be rounded to integers for writing the wave file
[1] "16959 mike NNS1 2019-12-01 18:12:11 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 239978421 240416615"
channels' data will be rounded to integers for writing the wave file
[1] "16960 mike NNS1 2019-12-01 18:12:48 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 241599738 242169390"
channels' data will be rounded to integers for writing the wave file
[1] "16961 mike NNS1 2019-12-01 18:13:29 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 243396333 243965985"
channels' data will be rounded to integers for writing the wave file
[1] "16962 mike NNS1 2019-12-01 18:16:29 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 251283823 251722017"
channels' data will be rounded to integers for writing the wave file
[1] "16963 mike NNS1 2019-12-01 18:19:04 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 258075829 258645481"
channels' data will be rounded to integers for writing the wave file
[1] "16964 mike NNS1 2019-12-01 18:26:26 16 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 277443999 278145109"
channels' data will be rounded to integers for writing the wave file
[1] "16965 mike NNS1 2019-12-01 18:28:29 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 282833784 283271978"
channels' data will be rounded to integers for writing the wave file
[1] "16966 mike NNS1 2019-12-01 18:29:35 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 285725863 286164057"
channels' data will be rounded to integers for writing the wave file
[1] "16967 mike NNS1 2019-12-01 18:36:28 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 303823271 304480562"
channels' data will be rounded to integers for writing the wave file
[1] "17009 mike NNS1 2019-12-02 06:44:16 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 9406990 9845356"
channels' data will be rounded to integers for writing the wave file
[1] "17010 mike NNS1 2019-12-02 06:47:26 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 17735951 18305827"
channels' data will be rounded to integers for writing the wave file
[1] "17011 mike NNS1 2019-12-02 06:48:30 24 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 20541496 21593575"
channels' data will be rounded to integers for writing the wave file
[1] "17012 mike NNS1 2019-12-02 06:49:11 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 22338798 22777164"
channels' data will be rounded to integers for writing the wave file
[1] "17013 mike NNS1 2019-12-02 06:49:44 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 23785407 24399120"
channels' data will be rounded to integers for writing the wave file
[1] "17014 mike NNS1 2019-12-02 06:51:23 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 28125234 28563600"
channels' data will be rounded to integers for writing the wave file
[1] "17015 mike NNS1 2019-12-02 06:52:41 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 31544492 32158205"
channels' data will be rounded to integers for writing the wave file
[1] "17016 mike NNS1 2019-12-02 06:53:24 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 33429467 33867833"
channels' data will be rounded to integers for writing the wave file
[1] "17017 mike NNS1 2019-12-02 06:55:06 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 37900804 38339170"
channels' data will be rounded to integers for writing the wave file
[1] "17018 mike NNS1 2019-12-02 06:57:56 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 45353032 45791398"
channels' data will be rounded to integers for writing the wave file
[1] "17019 mike NNS1 2019-12-02 06:59:37 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 49780533 50394246"
channels' data will be rounded to integers for writing the wave file
[1] "17020 mike NNS1 2019-12-02 07:00:29 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 52060038 52498404"
channels' data will be rounded to integers for writing the wave file
[1] "17021 mike NNS1 2019-12-02 07:00:59 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 53375137 53813503"
channels' data will be rounded to integers for writing the wave file
[1] "17022 mike NNS1 2019-12-02 07:02:40 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 57802637 58328677"
channels' data will be rounded to integers for writing the wave file
[1] "17023 mike NNS1 2019-12-02 07:03:05 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 58898553 59336919"
channels' data will be rounded to integers for writing the wave file
[1] "17024 mike NNS1 2019-12-02 07:05:15 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 64597316 65035682"
channels' data will be rounded to integers for writing the wave file
[1] "17025 mike NNS1 2019-12-02 07:05:50 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 66131599 66745312"
channels' data will be rounded to integers for writing the wave file
[1] "17026 mike NNS1 2019-12-02 07:06:11 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 67052168 67622044"
channels' data will be rounded to integers for writing the wave file
[1] "17027 mike NNS1 2019-12-02 07:07:52 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 71479668 71918034"
channels' data will be rounded to integers for writing the wave file
[1] "17028 mike NNS1 2019-12-02 07:09:26 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 75600312 76214025"
channels' data will be rounded to integers for writing the wave file
[1] "17029 mike NNS1 2019-12-02 07:10:35 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 78625040 79282590"
channels' data will be rounded to integers for writing the wave file
[1] "17030 mike NNS1 2019-12-02 07:11:55 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 82131971 82570337"
channels' data will be rounded to integers for writing the wave file
[1] "17031 mike NNS1 2019-12-02 07:26:20 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 120050663 120620539"
channels' data will be rounded to integers for writing the wave file
[1] "17032 mike NNS1 2019-12-02 07:27:12 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 122330168 122856208"
channels' data will be rounded to integers for writing the wave file
[1] "17033 mike NNS1 2019-12-02 07:29:21 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 127985094 128511134"
channels' data will be rounded to integers for writing the wave file
[1] "17034 mike NNS1 2019-12-02 07:31:43 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 134209897 134735937"
channels' data will be rounded to integers for writing the wave file
[1] "17035 mike NNS1 2019-12-02 07:32:34 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 136445565 136971605"
channels' data will be rounded to integers for writing the wave file
[1] "17036 mike NNS1 2019-12-02 07:32:51 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 137190788 137760664"
channels' data will be rounded to integers for writing the wave file
[1] "17037 mike NNS1 2019-12-02 07:33:15 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 138242867 138681233"
channels' data will be rounded to integers for writing the wave file
[1] "17038 mike NNS1 2019-12-02 07:36:43 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 147360888 147799254"
channels' data will be rounded to integers for writing the wave file
[1] "17039 mike NNS1 2019-12-02 07:37:57 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 150604799 151262349"
channels' data will be rounded to integers for writing the wave file
[1] "17040 mike NNS1 2019-12-02 07:41:22 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 159591310 160161186"
channels' data will be rounded to integers for writing the wave file
[1] "17041 mike NNS1 2019-12-02 07:43:21 11 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 164807869 165290072"
channels' data will be rounded to integers for writing the wave file
[1] "17042 mike NNS1 2019-12-02 07:46:49 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 173925890 174451930"
channels' data will be rounded to integers for writing the wave file
[1] "17043 mike NNS1 2019-12-02 07:59:53 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 208293814 208819854"
channels' data will be rounded to integers for writing the wave file
[1] "17044 mike NNS1 2019-12-02 08:01:08 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 211581562 212019928"
channels' data will be rounded to integers for writing the wave file
[1] "17045 mike NNS1 2019-12-02 08:01:47 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 213291190 213817230"
channels' data will be rounded to integers for writing the wave file
[1] "17046 mike NNS1 2019-12-02 08:02:02 16 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 213948740 214650126"
channels' data will be rounded to integers for writing the wave file
[1] "17047 mike NNS1 2019-12-02 08:03:36 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 218069384 218507750"
channels' data will be rounded to integers for writing the wave file
[1] "17048 mike NNS1 2019-12-02 08:04:34 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 220611909 221050275"
channels' data will be rounded to integers for writing the wave file
[1] "17049 mike NNS1 2019-12-02 08:05:06 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 222014681 222584557"
channels' data will be rounded to integers for writing the wave file
[1] "17050 mike NNS1 2019-12-02 08:06:55 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 226792875 227362751"
channels' data will be rounded to integers for writing the wave file
[1] "17051 mike NNS1 2019-12-02 08:08:36 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 231220375 231746415"
channels' data will be rounded to integers for writing the wave file
[1] "17052 mike NNS1 2019-12-02 08:10:58 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 237445178 237971218"
channels' data will be rounded to integers for writing the wave file
[1] "17053 mike NNS1 2019-12-02 08:15:49 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 250201639 250727679"
channels' data will be rounded to integers for writing the wave file
[1] "17054 mike NNS1 2019-12-02 08:16:16 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 251385228 251955104"
channels' data will be rounded to integers for writing the wave file
[1] "17055 mike NNS1 2019-12-02 08:17:39 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 255023669 255549709"
channels' data will be rounded to integers for writing the wave file
[1] "17056 mike NNS1 2019-12-02 08:18:03 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 256075749 256514115"
channels' data will be rounded to integers for writing the wave file
[1] "17057 mike NNS1 2019-12-02 08:19:44 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 260503249 261073125"
channels' data will be rounded to integers for writing the wave file
[1] "17058 mike NNS1 2019-12-02 08:23:03 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 269226740 269796616"
channels' data will be rounded to integers for writing the wave file
[1] "17059 mike NNS1 2019-12-02 08:25:48 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 276459785 276985825"
channels' data will be rounded to integers for writing the wave file
[1] "17060 mike NNS1 2019-12-02 08:26:11 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 277468028 277906394"
channels' data will be rounded to integers for writing the wave file
[1] "17061 mike NNS1 2019-12-02 08:31:20 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 291013549 291627262"
channels' data will be rounded to integers for writing the wave file
[1] "17062 mike NNS1 2019-12-02 08:33:33 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 296843821 297369861"
channels' data will be rounded to integers for writing the wave file
[1] "17063 mike NNS1 2019-12-02 08:34:20 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 298904143 299342509"
channels' data will be rounded to integers for writing the wave file
[1] "17064 mike NNS1 2019-12-02 08:36:53 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 305611149 306181025"
channels' data will be rounded to integers for writing the wave file
[1] "17201 mike NNS1 2019-12-02 16:43:27 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 6914367 7352732"
channels' data will be rounded to integers for writing the wave file
[1] "17202 mike NNS1 2019-12-02 16:44:34 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 9851415 10289780"
channels' data will be rounded to integers for writing the wave file
[1] "17203 mike NNS1 2019-12-02 16:45:28 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 12218587 12656952"
channels' data will be rounded to integers for writing the wave file
[1] "17204 mike NNS1 2019-12-02 16:46:36 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 15199472 15725510"
channels' data will be rounded to integers for writing the wave file
[1] "17205 mike NNS1 2019-12-02 16:49:52 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 23791433 24361308"
channels' data will be rounded to integers for writing the wave file
[1] "17206 mike NNS1 2019-12-02 16:50:20 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 25018856 25457221"
channels' data will be rounded to integers for writing the wave file
[1] "17207 mike NNS1 2019-12-02 16:51:00 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 26772317 27210682"
channels' data will be rounded to integers for writing the wave file
[1] "17208 mike NNS1 2019-12-02 16:52:04 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 29577856 30103894"
channels' data will be rounded to integers for writing the wave file
[1] "17209 mike NNS1 2019-12-02 16:53:20 19 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 32909432 33742326"
channels' data will be rounded to integers for writing the wave file
[1] "17210 mike NNS1 2019-12-02 17:08:37 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 73107535 73765083"
channels' data will be rounded to integers for writing the wave file
[1] "17211 mike NNS1 2019-12-02 17:09:01 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 74159612 74685650"
channels' data will be rounded to integers for writing the wave file
[1] "17212 mike NNS1 2019-12-02 17:09:43 17 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 76000747 76745968"
channels' data will be rounded to integers for writing the wave file
[1] "17213 mike NNS1 2019-12-02 17:11:16 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 80077544 80515909"
channels' data will be rounded to integers for writing the wave file
[1] "17214 mike NNS1 2019-12-02 17:12:04 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 82181698 82751573"
channels' data will be rounded to integers for writing the wave file
[1] "17215 mike NNS1 2019-12-02 17:13:04 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 84811890 85250255"
channels' data will be rounded to integers for writing the wave file
[1] "17216 mike NNS1 2019-12-02 17:14:14 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 87880448 88318813"
channels' data will be rounded to integers for writing the wave file
[1] "17217 mike NNS1 2019-12-02 17:15:23 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 90905169 91562717"
channels' data will be rounded to integers for writing the wave file
[1] "17218 mike NNS1 2019-12-02 17:19:12 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 100943735 101382100"
channels' data will be rounded to integers for writing the wave file
[1] "17219 mike NNS1 2019-12-02 17:23:36 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 112516581 112954946"
channels' data will be rounded to integers for writing the wave file
[1] "17220 mike NNS1 2019-12-02 17:30:11 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 129832012 130445723"
channels' data will be rounded to integers for writing the wave file
[1] "17221 mike NNS1 2019-12-02 17:30:56 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 131804656 132243021"
channels' data will be rounded to integers for writing the wave file
[1] "17222 mike NNS1 2019-12-02 17:33:08 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 137591079 138160954"
channels' data will be rounded to integers for writing the wave file
[1] "17223 mike NNS1 2019-12-02 17:36:33 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 146577569 147015934"
channels' data will be rounded to integers for writing the wave file
[1] "17224 mike NNS1 2019-12-02 17:38:19 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 151224241 151662606"
channels' data will be rounded to integers for writing the wave file
[1] "17225 mike NNS1 2019-12-02 17:39:46 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 155038020 155476385"
channels' data will be rounded to integers for writing the wave file
[1] "17226 mike NNS1 2019-12-02 17:41:24 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 159334000 159903875"
channels' data will be rounded to integers for writing the wave file
[1] "17227 mike NNS1 2019-12-02 17:41:54 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 160649096 161087461"
channels' data will be rounded to integers for writing the wave file
[1] "17228 mike NNS1 2019-12-02 17:42:31 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 162271048 162797086"
channels' data will be rounded to integers for writing the wave file
[1] "17229 mike NNS1 2019-12-02 17:44:13 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 166742375 167312250"
channels' data will be rounded to integers for writing the wave file
[1] "17230 mike NNS1 2019-12-02 17:44:35 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 167706779 168276654"
channels' data will be rounded to integers for writing the wave file
[1] "17231 mike NNS1 2019-12-02 17:50:05 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 182172835 182698873"
channels' data will be rounded to integers for writing the wave file
[1] "17232 mike NNS1 2019-12-02 17:50:46 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 183970133 184540008"
channels' data will be rounded to integers for writing the wave file
[1] "17233 mike NNS1 2019-12-02 17:51:29 19 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 185855104 186687998"
channels' data will be rounded to integers for writing the wave file
[1] "17234 mike NNS1 2019-12-02 17:52:18 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 188003095 188616806"
channels' data will be rounded to integers for writing the wave file
[1] "17235 mike NNS1 2019-12-02 18:03:05 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 216365333 216803698"
channels' data will be rounded to integers for writing the wave file
[1] "17236 mike NNS1 2019-12-02 18:03:51 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 218381814 218820179"
channels' data will be rounded to integers for writing the wave file
[1] "17237 mike NNS1 2019-12-02 18:04:10 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 219214708 219653073"
channels' data will be rounded to integers for writing the wave file
[1] "17238 mike NNS1 2019-12-02 18:04:33 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 220222948 220792823"
channels' data will be rounded to integers for writing the wave file
[1] "17239 mike NNS1 2019-12-02 18:05:02 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 221494208 221932573"
channels' data will be rounded to integers for writing the wave file
[1] "17240 mike NNS1 2019-12-02 18:05:37 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 223028486 223554524"
channels' data will be rounded to integers for writing the wave file
[1] "17241 mike NNS1 2019-12-02 18:06:52 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 226316227 226929938"
channels' data will be rounded to integers for writing the wave file
[1] "17242 mike NNS1 2019-12-02 18:09:03 17 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 232058813 232804034"
channels' data will be rounded to integers for writing the wave file
[1] "17243 mike NNS1 2019-12-02 18:12:31 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 241176812 241702850"
channels' data will be rounded to integers for writing the wave file
[1] "17244 mike NNS1 2019-12-02 18:13:51 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 244683735 245122100"
channels' data will be rounded to integers for writing the wave file
[1] "17245 mike NNS1 2019-12-02 18:15:20 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 248585186 249023551"
channels' data will be rounded to integers for writing the wave file
[1] "17246 mike NNS1 2019-12-02 18:15:36 16 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 249286571 249987956"
channels' data will be rounded to integers for writing the wave file
[1] "17247 mike NNS1 2019-12-02 18:17:50 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 255160667 255599032"
channels' data will be rounded to integers for writing the wave file
[1] "17248 mike NNS1 2019-12-02 18:21:18 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 264278666 264892377"
channels' data will be rounded to integers for writing the wave file
[1] "17249 mike NNS1 2019-12-02 18:23:00 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 268749993 269188358"
channels' data will be rounded to integers for writing the wave file
[1] "17250 mike NNS1 2019-12-02 18:25:27 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 275193964 275763839"
channels' data will be rounded to integers for writing the wave file
[1] "17251 mike NNS1 2019-12-02 18:26:40 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 278394031 278832396"
channels' data will be rounded to integers for writing the wave file
[1] "17252 mike NNS1 2019-12-02 18:27:51 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 281506425 282076300"
channels' data will be rounded to integers for writing the wave file
[1] "17253 mike NNS1 2019-12-02 18:29:33 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 285977751 286591462"
channels' data will be rounded to integers for writing the wave file
[1] "17254 mike NNS1 2019-12-02 18:32:00 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 292421722 292947760"
channels' data will be rounded to integers for writing the wave file
[1] "17255 mike NNS1 2019-12-02 18:32:35 18 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 293956001 294745059"
channels' data will be rounded to integers for writing the wave file
[1] "17256 mike NNS1 2019-12-02 18:35:23 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 301320539 301758904"
channels' data will be rounded to integers for writing the wave file
[1] "17257 mike NNS1 2019-12-02 18:35:43 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 302197269 302635634"
channels' data will be rounded to integers for writing the wave file
[1] "17273 mike NNS1 2019-12-03 05:34:46 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 144308596 144746853"
channels' data will be rounded to integers for writing the wave file
[1] "17274 mike NNS1 2019-12-03 05:35:04 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 145097459 145535716"
channels' data will be rounded to integers for writing the wave file
[1] "17275 mike NNS1 2019-12-03 05:38:17 19 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 153555825 154388514"
channels' data will be rounded to integers for writing the wave file
[1] "17276 mike NNS1 2019-12-03 05:43:33 16 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 167404756 168105968"
channels' data will be rounded to integers for writing the wave file
[1] "17277 mike NNS1 2019-12-03 05:44:16 20 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 169289263 170165778"
channels' data will be rounded to integers for writing the wave file
[1] "17278 mike NNS1 2019-12-03 05:45:22 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 172181761 172795321"
channels' data will be rounded to integers for writing the wave file
[1] "17279 mike NNS1 2019-12-03 05:46:02 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 173934790 174592176"
channels' data will be rounded to integers for writing the wave file
[1] "17280 mike NNS1 2019-12-03 05:46:42 17 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 175687820 176432857"
channels' data will be rounded to integers for writing the wave file
[1] "17281 mike NNS1 2019-12-03 05:49:14 16 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 182349331 183050543"
channels' data will be rounded to integers for writing the wave file
[1] "17282 mike NNS1 2019-12-03 05:50:37 16 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 185986867 186688079"
channels' data will be rounded to integers for writing the wave file
[1] "17283 mike NNS1 2019-12-03 05:52:35 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 191158303 191771863"
channels' data will be rounded to integers for writing the wave file
[1] "17284 mike NNS1 2019-12-03 05:54:48 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 196987125 197425382"
channels' data will be rounded to integers for writing the wave file
[1] "17285 mike NNS1 2019-12-03 05:55:36 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 199090760 199704320"
channels' data will be rounded to integers for writing the wave file
[1] "17286 mike NNS1 2019-12-03 05:58:01 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 205445492 206059052"
channels' data will be rounded to integers for writing the wave file
[1] "17287 mike NNS1 2019-12-03 06:04:56 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 223633170 224071427"
channels' data will be rounded to integers for writing the wave file
[1] "17288 mike NNS1 2019-12-03 06:05:32 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 225210897 225649154"
channels' data will be rounded to integers for writing the wave file
[1] "17289 mike NNS1 2019-12-03 06:17:30 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 256677772 257291332"
channels' data will be rounded to integers for writing the wave file
[1] "17290 mike NNS1 2019-12-03 06:18:52 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 260271482 260797391"
channels' data will be rounded to integers for writing the wave file
[1] "17291 mike NNS1 2019-12-03 06:23:30 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 272455035 273112421"
channels' data will be rounded to integers for writing the wave file
[1] "17292 mike NNS1 2019-12-03 06:31:34 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 293666689 294236424"
channels' data will be rounded to integers for writing the wave file
[1] "17293 mike NNS1 2019-12-03 06:32:06 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 295069113 295595022"
channels' data will be rounded to integers for writing the wave file
[1] "17294 mike NNS1 2019-12-03 06:33:37 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 299057254 299495511"
channels' data will be rounded to integers for writing the wave file
[1] "17295 mike NNS1 2019-12-03 06:33:55 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 299846118 300284375"
channels' data will be rounded to integers for writing the wave file
[1] "17296 mike NNS1 2019-12-03 06:34:24 26 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 301117064 302256533"
channels' data will be rounded to integers for writing the wave file
[1] "17297 mike NNS1 2019-12-03 06:35:01 17 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 302738616 303483653"
channels' data will be rounded to integers for writing the wave file
[1] "17298 mike NNS1 2019-12-03 06:41:01 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 -71609 366634"
channels' data will be rounded to integers for writing the wave file
[1] "17299 mike NNS1 2019-12-03 06:43:31 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 6502036 7071752"
channels' data will be rounded to integers for writing the wave file
[1] "17300 mike NNS1 2019-12-03 06:46:26 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 14171289 14697181"
channels' data will be rounded to integers for writing the wave file
[1] "17301 mike NNS1 2019-12-03 06:46:49 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 15179248 15617491"
channels' data will be rounded to integers for writing the wave file
[1] "17302 mike NNS1 2019-12-03 06:49:04 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 21095528 21621420"
channels' data will be rounded to integers for writing the wave file
[1] "17303 mike NNS1 2019-12-03 06:51:15 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 26836512 27274755"
channels' data will be rounded to integers for writing the wave file
[1] "17304 mike NNS1 2019-12-03 06:52:15 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 29465970 29904213"
channels' data will be rounded to integers for writing the wave file
[1] "17305 mike NNS1 2019-12-03 06:52:33 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 30254807 30824523"
channels' data will be rounded to integers for writing the wave file
[1] "17306 mike NNS1 2019-12-03 06:52:57 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 31306591 31963956"
channels' data will be rounded to integers for writing the wave file
[1] "17307 mike NNS1 2019-12-03 06:56:05 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 39545559 39983802"
channels' data will be rounded to integers for writing the wave file
[1] "17308 mike NNS1 2019-12-03 06:57:20 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 42832382 43270625"
channels' data will be rounded to integers for writing the wave file
[1] "17309 mike NNS1 2019-12-03 06:58:05 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 44804475 45330367"
channels' data will be rounded to integers for writing the wave file
[1] "17310 mike NNS1 2019-12-03 06:59:07 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 47521582 47959825"
channels' data will be rounded to integers for writing the wave file
[1] "17311 mike NNS1 2019-12-03 07:00:01 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 49888094 50326337"
channels' data will be rounded to integers for writing the wave file
[1] "17312 mike NNS1 2019-12-03 07:02:52 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 57382050 57951766"
channels' data will be rounded to integers for writing the wave file
[1] "17313 mike NNS1 2019-12-03 07:03:36 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 59310319 59967684"
channels' data will be rounded to integers for writing the wave file
[1] "17314 mike NNS1 2019-12-03 07:04:23 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 61370061 61983601"
channels' data will be rounded to integers for writing the wave file
[1] "17315 mike NNS1 2019-12-03 07:05:27 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 64174816 64700708"
channels' data will be rounded to integers for writing the wave file
[1] "17316 mike NNS1 2019-12-03 07:05:43 16 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 64876005 65577194"
channels' data will be rounded to integers for writing the wave file
[1] "17317 mike NNS1 2019-12-03 07:12:48 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 83501333 83939576"
channels' data will be rounded to integers for writing the wave file
[1] "17318 mike NNS1 2019-12-03 07:19:50 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 101995188 102564904"
channels' data will be rounded to integers for writing the wave file
[1] "17319 mike NNS1 2019-12-03 07:22:55 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 110102684 110760049"
channels' data will be rounded to integers for writing the wave file
[1] "17320 mike NNS1 2019-12-03 07:24:36 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 114528938 115142478"
channels' data will be rounded to integers for writing the wave file
[1] "17321 mike NNS1 2019-12-03 07:25:50 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 117771936 118341652"
channels' data will be rounded to integers for writing the wave file
[1] "17322 mike NNS1 2019-12-03 07:26:19 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 119042841 119481084"
channels' data will be rounded to integers for writing the wave file
[1] "17323 mike NNS1 2019-12-03 07:28:08 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 123819690 124257933"
channels' data will be rounded to integers for writing the wave file
[1] "17324 mike NNS1 2019-12-03 07:29:09 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 126492972 126931215"
channels' data will be rounded to integers for writing the wave file
[1] "17325 mike NNS1 2019-12-03 07:34:48 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 141349410 141787653"
channels' data will be rounded to integers for writing the wave file
[1] "17326 mike NNS1 2019-12-03 07:40:09 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 155417011 155855254"
channels' data will be rounded to integers for writing the wave file
[1] "17327 mike NNS1 2019-12-03 07:41:41 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 159448846 159887089"
channels' data will be rounded to integers for writing the wave file
[1] "17328 mike NNS1 2019-12-03 07:50:09 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 181711591 182325131"
channels' data will be rounded to integers for writing the wave file
[1] "17329 mike NNS1 2019-12-03 07:52:40 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 188329061 188767304"
channels' data will be rounded to integers for writing the wave file
[1] "17330 mike NNS1 2019-12-03 07:53:46 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 191221465 191659708"
channels' data will be rounded to integers for writing the wave file
[1] "17331 mike NNS1 2019-12-03 07:56:32 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 198496299 199109839"
channels' data will be rounded to integers for writing the wave file
[1] "17332 mike NNS1 2019-12-03 07:57:02 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 199811028 200380744"
channels' data will be rounded to integers for writing the wave file
[1] "17333 mike NNS1 2019-12-03 07:57:43 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 201607824 202046067"
channels' data will be rounded to integers for writing the wave file
[1] "17334 mike NNS1 2019-12-03 08:00:16 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 208312942 208751185"
channels' data will be rounded to integers for writing the wave file
[1] "17335 mike NNS1 2019-12-03 08:00:29 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 208882658 209320901"
channels' data will be rounded to integers for writing the wave file
[1] "17336 mike NNS1 2019-12-03 08:01:13 16 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 210810927 211512116"
channels' data will be rounded to integers for writing the wave file
[1] "17337 mike NNS1 2019-12-03 08:06:18 31 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 224177339 225535892"
channels' data will be rounded to integers for writing the wave file
[1] "17338 mike NNS1 2019-12-03 08:08:04 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 228822715 229392431"
channels' data will be rounded to integers for writing the wave file
[1] "17339 mike NNS1 2019-12-03 08:09:12 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 231802767 232328659"
channels' data will be rounded to integers for writing the wave file
[1] "17340 mike NNS1 2019-12-03 08:09:33 22 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 232723078 233687213"
channels' data will be rounded to integers for writing the wave file
[1] "17341 mike NNS1 2019-12-03 08:10:11 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 234388401 234958117"
channels' data will be rounded to integers for writing the wave file
[1] "17342 mike NNS1 2019-12-03 08:13:56 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 244248869 244818585"
channels' data will be rounded to integers for writing the wave file
[1] "17343 mike NNS1 2019-12-03 08:15:35 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 248587475 249025718"
channels' data will be rounded to integers for writing the wave file
[1] "17344 mike NNS1 2019-12-03 08:16:13 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 250252798 250822514"
channels' data will be rounded to integers for writing the wave file
[1] "17345 mike NNS1 2019-12-03 08:16:53 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 252005770 252444013"
channels' data will be rounded to integers for writing the wave file
[1] "17346 mike NNS1 2019-12-03 08:17:27 17 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 253495796 254240809"
channels' data will be rounded to integers for writing the wave file
[1] "17347 mike NNS1 2019-12-03 08:20:56 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 262655075 263224791"
channels' data will be rounded to integers for writing the wave file
[1] "17348 mike NNS1 2019-12-03 08:21:44 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 264758642 265372182"
channels' data will be rounded to integers for writing the wave file
[1] "17349 mike NNS1 2019-12-03 08:24:30 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 272033475 272471718"
channels' data will be rounded to integers for writing the wave file
[1] "17570 mike NNS1 2019-12-04 05:31:04 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 134228666 134666984"
channels' data will be rounded to integers for writing the wave file
[1] "17571 mike NNS1 2019-12-04 05:31:21 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 134973808 135412126"
channels' data will be rounded to integers for writing the wave file
[1] "17572 mike NNS1 2019-12-04 05:32:43 18 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 138568019 139356992"
channels' data will be rounded to integers for writing the wave file
[1] "17573 mike NNS1 2019-12-04 05:36:37 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 148824670 149262988"
channels' data will be rounded to integers for writing the wave file
[1] "17574 mike NNS1 2019-12-04 05:38:24 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 153514677 153952995"
channels' data will be rounded to integers for writing the wave file
[1] "17575 mike NNS1 2019-12-04 05:39:53 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 157415711 158029357"
channels' data will be rounded to integers for writing the wave file
[1] "17576 mike NNS1 2019-12-04 05:40:22 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 158686835 159125153"
channels' data will be rounded to integers for writing the wave file
[1] "17577 mike NNS1 2019-12-04 05:42:51 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 165217779 165656097"
channels' data will be rounded to integers for writing the wave file
[1] "17578 mike NNS1 2019-12-04 05:43:53 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 167935354 168373672"
channels' data will be rounded to integers for writing the wave file
[1] "17579 mike NNS1 2019-12-04 05:45:36 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 172450033 173063679"
channels' data will be rounded to integers for writing the wave file
[1] "17580 mike NNS1 2019-12-04 05:48:53 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 181084906 181523224"
channels' data will be rounded to integers for writing the wave file
[1] "17581 mike NNS1 2019-12-04 05:49:30 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 182706685 183320331"
channels' data will be rounded to integers for writing the wave file
[1] "17582 mike NNS1 2019-12-04 05:50:30 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 185336595 185774913"
channels' data will be rounded to integers for writing the wave file
[1] "17583 mike NNS1 2019-12-04 05:50:55 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 186432391 186870709"
channels' data will be rounded to integers for writing the wave file
[1] "17584 mike NNS1 2019-12-04 05:51:58 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 189193797 189807443"
channels' data will be rounded to integers for writing the wave file
[1] "17585 mike NNS1 2019-12-04 05:52:30 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 190596416 191034734"
channels' data will be rounded to integers for writing the wave file
[1] "17586 mike NNS1 2019-12-04 05:53:52 18 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 194190627 194979600"
channels' data will be rounded to integers for writing the wave file
[1] "17587 mike NNS1 2019-12-04 05:55:55 19 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 199581944 200414749"
channels' data will be rounded to integers for writing the wave file
[1] "17588 mike NNS1 2019-12-04 05:56:47 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 201861200 202299518"
channels' data will be rounded to integers for writing the wave file
[1] "17589 mike NNS1 2019-12-04 05:57:47 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 204491110 204929428"
channels' data will be rounded to integers for writing the wave file
[1] "17590 mike NNS1 2019-12-04 05:59:15 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 208348313 208918127"
channels' data will be rounded to integers for writing the wave file
[1] "17591 mike NNS1 2019-12-04 06:01:31 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 214309443 214923089"
channels' data will be rounded to integers for writing the wave file
[1] "17592 mike NNS1 2019-12-04 06:01:54 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 215317576 215755894"
channels' data will be rounded to integers for writing the wave file
[1] "17593 mike NNS1 2019-12-04 06:02:39 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 217290009 217728327"
channels' data will be rounded to integers for writing the wave file
[1] "17594 mike NNS1 2019-12-04 06:03:37 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 219832255 220270573"
channels' data will be rounded to integers for writing the wave file
[1] "17595 mike NNS1 2019-12-04 06:08:25 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 232455826 232894144"
channels' data will be rounded to integers for writing the wave file
[1] "17596 mike NNS1 2019-12-04 06:09:29 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 235261064 235699382"
channels' data will be rounded to integers for writing the wave file
[1] "17597 mike NNS1 2019-12-04 06:10:59 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 239205930 239775744"
channels' data will be rounded to integers for writing the wave file
[1] "17598 mike NNS1 2019-12-04 06:12:14 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 242493318 243063132"
channels' data will be rounded to integers for writing the wave file
[1] "17599 mike NNS1 2019-12-04 06:16:12 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 252925297 253363615"
channels' data will be rounded to integers for writing the wave file
[1] "17600 mike NNS1 2019-12-04 06:17:17 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 255774366 256344180"
channels' data will be rounded to integers for writing the wave file
[1] "17601 mike NNS1 2019-12-04 06:18:14 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 258272782 258711100"
channels' data will be rounded to integers for writing the wave file
[1] "17602 mike NNS1 2019-12-04 06:20:37 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 264540735 265110549"
channels' data will be rounded to integers for writing the wave file
[1] "17603 mike NNS1 2019-12-04 06:24:13 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 274008413 274534395"
channels' data will be rounded to integers for writing the wave file
[1] "17604 mike NNS1 2019-12-04 06:24:32 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 274841218 275279536"
channels' data will be rounded to integers for writing the wave file
[1] "17605 mike NNS1 2019-12-04 06:26:03 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 278829916 279268234"
channels' data will be rounded to integers for writing the wave file
[1] "17606 mike NNS1 2019-12-04 06:26:50 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 280890012 281459826"
channels' data will be rounded to integers for writing the wave file
[1] "17607 mike NNS1 2019-12-04 06:29:57 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 289086567 289612549"
channels' data will be rounded to integers for writing the wave file
[1] "17608 mike NNS1 2019-12-04 06:30:24 12 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 290270027 290796009"
channels' data will be rounded to integers for writing the wave file
[1] "17609 mike NNS1 2019-12-04 06:31:12 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 292373955 292812273"
channels' data will be rounded to integers for writing the wave file
[1] "17610 mike NNS1 2019-12-04 06:32:59 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 297063962 297502280"
channels' data will be rounded to integers for writing the wave file
[1] "17611 mike NNS1 2019-12-04 06:36:39 18 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 306706968 307495941"
channels' data will be rounded to integers for writing the wave file
[1] "17612 mike NNS1 2019-12-04 06:39:19 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 313720063 314158381"
channels' data will be rounded to integers for writing the wave file
[1] "17761 november NNS1 2019-11-29 16:43:47 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 6582673 7023673"
[1] "17762 november NNS1 2019-11-29 16:48:00 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 17739973 18357373"
[1] "17763 november NNS1 2019-11-29 16:49:18 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 21179773 21620773"
[1] "17764 november NNS1 2019-11-29 16:51:36 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 27265573 27882973"
[1] "17765 november NNS1 2019-11-29 16:52:54 18 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 30705373 31499173"
[1] "17766 november NNS1 2019-11-29 16:54:50 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 35820973 36438373"
[1] "17767 november NNS1 2019-11-29 16:56:10 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 39348973 39789973"
[1] "17768 november NNS1 2019-11-29 16:58:45 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 46184473 46625473"
[1] "17769 november NNS1 2019-11-29 16:59:41 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 48654073 49095073"
[1] "17770 november NNS1 2019-11-29 17:01:41 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 53946073 54387073"
[1] "17771 november NNS1 2019-11-29 17:02:07 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 55092673 55710073"
[1] "17772 november NNS1 2019-11-29 17:02:54 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 57165373 57738673"
[1] "17773 november NNS1 2019-11-29 17:05:27 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 63912673 64353673"
[1] "17774 november NNS1 2019-11-29 17:05:54 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 65103373 65544373"
[1] "17775 november NNS1 2019-11-29 17:06:20 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 66249973 66690973"
[1] "17776 november NNS1 2019-11-29 17:17:17 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 95223673 95796973"
[1] "17777 november NNS1 2019-11-29 17:21:31 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 106425073 107042473"
[1] "17778 november NNS1 2019-11-29 17:25:32 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 117053173 117714673"
[1] "17779 november NNS1 2019-11-29 17:31:05 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 131738473 132311773"
[1] "17780 november NNS1 2019-11-29 17:48:13 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 177073273 177514273"
[1] "17781 november NNS1 2019-11-29 17:51:04 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 184614373 185055373"
[1] "17782 november NNS1 2019-11-29 18:15:47 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 250014673 250455673"
[1] "17783 november NNS1 2019-11-29 18:15:59 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 250543873 250984873"
[1] "17784 november NNS1 2019-11-29 18:19:55 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 260951473 261392473"
[1] "17785 november NNS1 2019-11-29 18:34:42 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191129_STUDY [-39.1041 176.8027]/NNS1_20191129_164100_SunriseToSunset [-39.1041 176.8027].wav 44100 300068173 300685573"
[1] "17927 november NNS1 2019-12-01 06:55:57 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 38458351 38899351"
[1] "17928 november NNS1 2019-12-01 06:57:55 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 43662151 44103151"
[1] "17929 november NNS1 2019-12-01 07:00:55 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 51600151 52041151"
[1] "17930 november NNS1 2019-12-01 07:09:12 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 73517851 73958851"
[1] "17931 november NNS1 2019-12-01 07:26:59 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 120572551 121013551"
[1] "17932 november NNS1 2019-12-01 07:29:40 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 127672651 128334151"
[1] "17933 november NNS1 2019-12-01 07:41:22 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 158630851 159071851"
[1] "17934 november NNS1 2019-12-01 07:46:16 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 171596251 172257751"
[1] "17935 november NNS1 2019-12-01 07:47:31 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 174903751 175344751"
[1] "17936 november NNS1 2019-12-01 07:47:43 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 175432951 175873951"
[1] "17937 november NNS1 2019-12-01 07:50:11 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 181959751 182577151"
[1] "17938 november NNS1 2019-12-01 07:52:56 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 189236251 189897751"
[1] "17939 november NNS1 2019-12-01 07:56:10 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 197791651 198409051"
[1] "17940 november NNS1 2019-12-01 08:12:18 19 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 240480451 241318351"
[1] "17941 november NNS1 2019-12-01 08:19:59 18 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 260810551 261604351"
[1] "17942 november NNS1 2019-12-01 08:22:02 16 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 266234851 266940451"
[1] "17943 november NNS1 2019-12-01 08:23:49 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 270953551 271526851"
[1] "17944 november NNS1 2019-12-01 08:38:22 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_064100_SunriseToSunset [-39.1041 176.8027].wav 44100 309452851 309893851"
[1] "17963 november NNS1 2019-12-01 10:42:49 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 3728759 4390259"
[1] "17964 november NNS1 2019-12-01 10:47:54 18 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 17179259 17973059"
[1] "17965 november NNS1 2019-12-01 10:53:28 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 31908659 32349659"
[1] "17966 november NNS1 2019-12-01 10:53:39 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 32393759 32834759"
[1] "17967 november NNS1 2019-12-01 10:59:47 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 48622559 49063559"
[1] "17968 november NNS1 2019-12-01 11:14:45 16 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 88224359 88929959"
[1] "17969 november NNS1 2019-12-01 11:17:01 16 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 94221959 94927559"
[1] "17970 november NNS1 2019-12-01 11:18:26 17 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 97970459 98720159"
[1] "17971 november NNS1 2019-12-01 11:51:53 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 186479159 186920159"
[1] "17972 november NNS1 2019-12-01 11:52:04 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 186964259 187405259"
[1] "17973 november NNS1 2019-12-01 11:54:17 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 192829559 193491059"
[1] "17974 november NNS1 2019-12-01 11:57:16 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 200723459 201164459"
[1] "17975 november NNS1 2019-12-01 11:58:19 17 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 203501759 204251459"
[1] "17976 november NNS1 2019-12-01 11:59:02 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 205398059 205839059"
[1] "17977 november NNS1 2019-12-01 12:01:01 19 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 210645959 211483859"
[1] "17978 november NNS1 2019-12-01 12:05:49 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 223346759 223787759"
[1] "17979 november NNS1 2019-12-01 12:30:09 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 287732759 288173759"
[1] "17980 november NNS1 2019-12-01 12:35:38 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 302241659 302814959"
[1] "17981 november NNS1 2019-12-01 12:36:50 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 305416859 306078359"
[1] "17982 november NNS1 2019-12-01 12:39:22 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_104100_SunriseToSunset [-39.1041 176.8027].wav 44100 312120059 312561059"
[1] "17993 november NNS1 2019-12-01 15:14:50 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 88358046 88799046"
[1] "17994 november NNS1 2019-12-01 15:18:52 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 99030246 99647646"
[1] "17995 november NNS1 2019-12-01 15:19:47 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 101455746 101896746"
[1] "17996 november NNS1 2019-12-01 15:24:47 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 114685746 115303146"
[1] "17997 november NNS1 2019-12-01 15:26:26 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 119051646 119492646"
[1] "17998 november NNS1 2019-12-01 15:28:08 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 123549846 123990846"
[1] "17999 november NNS1 2019-12-01 15:31:07 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 131443746 131884746"
[1] "18000 november NNS1 2019-12-01 15:32:42 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 135633246 136074246"
[1] "18001 november NNS1 2019-12-01 15:34:55 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 141498546 141939546"
[1] "18002 november NNS1 2019-12-01 15:35:06 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 141983646 142424646"
[1] "18003 november NNS1 2019-12-01 15:46:49 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 172985946 173647446"
[1] "18004 november NNS1 2019-12-01 15:53:22 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 190317246 190758246"
[1] "18005 november NNS1 2019-12-01 15:54:58 19 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 194550846 195388746"
[1] "18006 november NNS1 2019-12-01 16:01:47 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.1041 176.8027]/NNS1_20191201_144100_SunriseToSunset [-39.1041 176.8027].wav 44100 212587746 213028746"
[1] "18007 november NNS1 2019-12-01 17:11:30 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 80432025 80870219"
channels' data will be rounded to integers for writing the wave file
[1] "18008 november NNS1 2019-12-01 17:35:13 14 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 142787016 143400487"
channels' data will be rounded to integers for writing the wave file
[1] "18009 november NNS1 2019-12-01 17:38:11 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 150586867 151025061"
channels' data will be rounded to integers for writing the wave file
[1] "18010 november NNS1 2019-12-01 18:14:55 20 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 247164801 248041189"
channels' data will be rounded to integers for writing the wave file
[1] "18011 november NNS1 2019-12-01 18:16:46 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 252028753 252686044"
channels' data will be rounded to integers for writing the wave file
[1] "18012 november NNS1 2019-12-01 18:17:48 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 254745555 255402846"
channels' data will be rounded to integers for writing the wave file
[1] "18013 november NNS1 2019-12-01 18:18:32 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 256673608 257111802"
channels' data will be rounded to integers for writing the wave file
[1] "18014 november NNS1 2019-12-01 18:24:56 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 273500254 273938448"
channels' data will be rounded to integers for writing the wave file
[1] "18015 november NNS1 2019-12-01 18:27:16 18 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191201_STUDY [-39.0986 176.8061]/NNS1_20191201_164100_SunriseToSunset [-39.0986 176.8061].wav 43819.3892728781 279634968 280423717"
channels' data will be rounded to integers for writing the wave file
[1] "18044 november NNS1 2019-12-02 06:54:24 16 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 36059665 36761051"
channels' data will be rounded to integers for writing the wave file
[1] "18045 november NNS1 2019-12-02 06:57:05 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 43117364 43555730"
channels' data will be rounded to integers for writing the wave file
[1] "18046 november NNS1 2019-12-02 06:59:12 16 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 48684617 49386003"
channels' data will be rounded to integers for writing the wave file
[1] "18047 november NNS1 2019-12-02 07:01:42 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 55260112 55698478"
channels' data will be rounded to integers for writing the wave file
[1] "18048 november NNS1 2019-12-02 07:02:49 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 58197167 58635533"
channels' data will be rounded to integers for writing the wave file
[1] "18049 november NNS1 2019-12-02 07:03:53 16 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 61002712 61704098"
channels' data will be rounded to integers for writing the wave file
[1] "18050 november NNS1 2019-12-02 07:08:14 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 72444074 72882440"
channels' data will be rounded to integers for writing the wave file
[1] "18051 november NNS1 2019-12-02 07:32:28 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 136182545 136620911"
channels' data will be rounded to integers for writing the wave file
[1] "18052 november NNS1 2019-12-02 07:33:40 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 139338783 139777149"
channels' data will be rounded to integers for writing the wave file
[1] "18053 november NNS1 2019-12-02 07:34:16 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 140916902 141355268"
channels' data will be rounded to integers for writing the wave file
[1] "18054 november NNS1 2019-12-02 07:37:32 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 149508883 149947249"
channels' data will be rounded to integers for writing the wave file
[1] "18055 november NNS1 2019-12-02 07:38:11 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 151218512 151876062"
channels' data will be rounded to integers for writing the wave file
[1] "18056 november NNS1 2019-12-02 07:38:42 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 152577448 153015814"
channels' data will be rounded to integers for writing the wave file
[1] "18057 november NNS1 2019-12-02 07:45:48 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 171251855 171909405"
channels' data will be rounded to integers for writing the wave file
[1] "18058 november NNS1 2019-12-02 08:02:49 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 216009062 216447428"
channels' data will be rounded to integers for writing the wave file
[1] "18059 november NNS1 2019-12-02 08:03:15 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 217148815 217587181"
channels' data will be rounded to integers for writing the wave file
[1] "18060 november NNS1 2019-12-02 08:09:42 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 234113593 234683469"
channels' data will be rounded to integers for writing the wave file
[1] "18061 november NNS1 2019-12-02 08:16:01 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 250727679 251166045"
channels' data will be rounded to integers for writing the wave file
[1] "18062 november NNS1 2019-12-02 08:17:30 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 254629140 255067506"
channels' data will be rounded to integers for writing the wave file
[1] "18063 november NNS1 2019-12-02 08:18:42 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 257785377 258442927"
channels' data will be rounded to integers for writing the wave file
[1] "18064 november NNS1 2019-12-02 08:20:23 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 262212878 262651244"
channels' data will be rounded to integers for writing the wave file
[1] "18065 november NNS1 2019-12-02 08:35:19 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 301490505 301928871"
channels' data will be rounded to integers for writing the wave file
[1] "18066 november NNS1 2019-12-02 08:36:33 13 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_064029_SunriseToSunset [-39.0986 176.8061].wav 43836.6374358263 304734416 305304292"
channels' data will be rounded to integers for writing the wave file
[1] "18139 november NNS1 2019-12-02 17:22:02 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 108395946 108834311"
channels' data will be rounded to integers for writing the wave file
[1] "18140 november NNS1 2019-12-02 17:26:47 16 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 120889359 121590744"
channels' data will be rounded to integers for writing the wave file
[1] "18141 november NNS1 2019-12-02 17:27:46 18 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 123475714 124264772"
channels' data will be rounded to integers for writing the wave file
[1] "18142 november NNS1 2019-12-02 17:29:59 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 129305974 129744339"
channels' data will be rounded to integers for writing the wave file
[1] "18143 november NNS1 2019-12-02 17:36:46 18 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 147147444 147936502"
channels' data will be rounded to integers for writing the wave file
[1] "18144 november NNS1 2019-12-02 17:43:02 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 163629981 164287529"
channels' data will be rounded to integers for writing the wave file
[1] "18145 november NNS1 2019-12-02 17:44:23 17 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 167180740 167925961"
channels' data will be rounded to integers for writing the wave file
[1] "18146 november NNS1 2019-12-02 17:58:16 18 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 203696574 204485632"
channels' data will be rounded to integers for writing the wave file
[1] "18147 november NNS1 2019-12-02 18:05:28 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 222633958 223072323"
channels' data will be rounded to integers for writing the wave file
[1] "18148 november NNS1 2019-12-02 18:10:31 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 235916428 236354793"
channels' data will be rounded to integers for writing the wave file
[1] "18149 november NNS1 2019-12-02 18:30:15 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191202_STUDY [-39.0986 176.8061]/NNS1_20191202_164038_SunriseToSunset [-39.0986 176.8061].wav 43836.5354265074 287818886 288257251"
channels' data will be rounded to integers for writing the wave file
[1] "18156 november NNS1 2019-12-03 05:44:05 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 168807180 169245437"
channels' data will be rounded to integers for writing the wave file
[1] "18157 november NNS1 2019-12-03 05:52:13 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 190194137 190632394"
channels' data will be rounded to integers for writing the wave file
[1] "18158 november NNS1 2019-12-03 05:53:56 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 194708187 195146444"
channels' data will be rounded to integers for writing the wave file
[1] "18159 november NNS1 2019-12-03 05:55:20 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 198389549 198827806"
channels' data will be rounded to integers for writing the wave file
[1] "18160 november NNS1 2019-12-03 05:56:29 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 201413524 201851781"
channels' data will be rounded to integers for writing the wave file
[1] "18161 november NNS1 2019-12-03 06:06:36 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 228015743 228454000"
channels' data will be rounded to integers for writing the wave file
[1] "18162 november NNS1 2019-12-03 06:09:03 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 234458126 234896383"
channels' data will be rounded to integers for writing the wave file
[1] "18163 november NNS1 2019-12-03 06:26:48 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 281132530 281570787"
channels' data will be rounded to integers for writing the wave file
[1] "18164 november NNS1 2019-12-03 06:28:32 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 285690406 286128663"
channels' data will be rounded to integers for writing the wave file
[1] "18165 november NNS1 2019-12-03 06:29:16 17 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 287618738 288363775"
channels' data will be rounded to integers for writing the wave file
[1] "18166 november NNS1 2019-12-03 06:30:13 18 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 290116805 290905668"
channels' data will be rounded to integers for writing the wave file
[1] "18167 november NNS1 2019-12-03 06:35:21 19 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_044000_SunriseToSunset [-39.0986 176.8061].wav 43825.7316938381 303615131 304447820"
channels' data will be rounded to integers for writing the wave file
[1] "18168 november NNS1 2019-12-03 07:01:18 15 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 53262565 53919930"
channels' data will be rounded to integers for writing the wave file
[1] "18169 november NNS1 2019-12-03 07:03:05 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 57951766 58390009"
channels' data will be rounded to integers for writing the wave file
[1] "18170 november NNS1 2019-12-03 07:05:58 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 65533370 65971613"
channels' data will be rounded to integers for writing the wave file
[1] "18171 november NNS1 2019-12-03 07:23:06 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 110584751 111022994"
channels' data will be rounded to integers for writing the wave file
[1] "18172 november NNS1 2019-12-03 07:29:50 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 128289768 128728011"
channels' data will be rounded to integers for writing the wave file
[1] "18173 november NNS1 2019-12-03 07:33:24 19 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 137668169 138500831"
channels' data will be rounded to integers for writing the wave file
[1] "18174 november NNS1 2019-12-03 07:33:50 17 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 138807601 139552614"
channels' data will be rounded to integers for writing the wave file
[1] "18175 november NNS1 2019-12-03 07:39:17 20 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 153138147 154014633"
channels' data will be rounded to integers for writing the wave file
[1] "18176 november NNS1 2019-12-03 07:45:21 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 169090193 169528436"
channels' data will be rounded to integers for writing the wave file
[1] "18177 november NNS1 2019-12-03 07:49:29 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 179958619 180396862"
channels' data will be rounded to integers for writing the wave file
[1] "18178 november NNS1 2019-12-03 08:07:17 18 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 226762973 227551810"
channels' data will be rounded to integers for writing the wave file
[1] "18179 november NNS1 2019-12-03 08:10:01 10 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191203_STUDY [-39.0986 176.8061]/NNS1_20191203_064040_SunriseToSunset [-39.0986 176.8061].wav 43824.3009169214 233950158 234388401"
channels' data will be rounded to integers for writing the wave file
[1] "18214 november NNS1 2019-12-04 06:35:24 11 data/2019 BAR recordings/NNS DOC Station nests/NNS1/NNS1_20191204_STUDY [-39.0986 176.8061]/NNS1_20191204_044000_SunriseToSunset [-39.0986 176.8061].wav 43831.8427959663 303419580 303901730"
channels' data will be rounded to integers for writing the wave file
template_wav = readWave("misc/ZOOM0049_NNK6_LNVX_F_FH_sel.01.ch01.181124.094641.12..wav")
template_wav = resamp(template_wav, g = 44100, output = "Wave")
template_duration = length(template_wav@left) / template_wav@samp.rate
savewav(template_wav, filename = "misc/zip_template.wav")
corTemplate = makeCorTemplate("misc/zip_template.wav", wl = 300, frq.lim = c(5, 14))
Automatic point selection.
Done.
for (bird in human_readable_rfids) {
files_for_bird = Sys.glob(paste0("data/2019 BAR recordings - individual bird clips/", bird, "/*.wav"))
clips = c()
if (length(files_for_bird) == 0) {
next
}
for (i in 1:length(files_for_bird)) {
f = files_for_bird[i]
cscores = corMatch(f, corTemplate)
cdetects = findPeaks(cscores)
detects = getDetections(cdetects)
if (i == 1) {
plot(cdetects)
}
if (nrow(detects) > 1) {
for (j in 1:nrow(detects)) {
start_time = detects$time[j]
clip = readWave(f, from = start_time, to = start_time + template_duration, units = "seconds")@left
clips = c(clips, clip)
}
}
}
if (length(clips) > 10) {
wav = Wave(clips, samp.rate = 44100, bit = 16)
output_filename = paste0("data/2019 BAR recordings - individual bird clips/", bird, ".wav")
writeWave(wav, output_filename)
}
}
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
0 to 10.000022675737 seconds
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done
Starting A . . .
Fourier transform on survey . . .
Continuing. . .
Done.
Done with A
Done